You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
232 B
CMake

include_directories(hdr)
add_library(lte SHARED
src/liblte_common.cc
src/liblte_rrc.cc
src/liblte_mme.cc
src/liblte_security.cc
)
target_link_libraries(lte ${POLAR_LIBRARIES})
INSTALL(TARGETS lte DESTINATION ${LIBRARY_DIR})