mirror of https://github.com/pvnis/srsRAN_4G.git
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.
29 lines
318 B
CMake
29 lines
318 B
CMake
|
|
|
|
file(GLOB modules *)
|
|
|
|
SET(SOURCES_ALL "")
|
|
foreach (_module ${modules})
|
|
if (IS_DIRECTORY ${_module})
|
|
file(GLOB_RECURSE tmp "${_module}/src/*.c")
|
|
LIST(APPEND SOURCES_ALL ${tmp})
|
|
endif()
|
|
endforeach()
|
|
|
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../include)
|
|
|
|
|
|
add_library(osld ${SOURCES_ALL})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|