8 lines
280 B
CMake
8 lines
280 B
CMake
file(GLOB PSEMEK_LIBRARIES RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}/*")
|
|
list(REMOVE_ITEM PSEMEK_LIBRARIES "CMakeLists.txt")
|
|
|
|
foreach(lib ${PSEMEK_LIBRARIES})
|
|
add_subdirectory(${lib})
|
|
endforeach()
|
|
|
|
set(PSEMEK_LIBRARIES ${PSEMEK_LIBRARIES} PARENT_SCOPE)
|