owlps/owlps-aggregator/CMakeLists.txt

13 lines
338 B
CMake

set(EXTRA_LIBS ${EXTRA_LIBS} pthread confuse)
add_executable(owlps-aggregatord owlps-aggregatord.c)
target_link_libraries(owlps-aggregatord
libowlps.so
${EXTRA_LIBS})
add_executable(owlps-aggregatord.semistatic EXCLUDE_FROM_ALL
owlps-aggregatord.c)
target_link_libraries(owlps-aggregatord.semistatic
libowlps.a
${EXTRA_LIBS})