6 lines
305 B
CMake
6 lines
305 B
CMake
add_library(polling_manager polling_manager.c)
|
|
target_include_directories(polling_manager PUBLIC ${CMAKE_CURRENT_LIST_DIR})
|
|
target_include_directories(polling_manager PUBLIC ${CMAKE_SOURCE_DIR}/include/)
|
|
target_link_libraries(polling_manager PUBLIC module_manager ${CMAKE_DL_LIBS})
|
|
|
|
add_subdirectory(test) |