owlps/owlps-udp-to-http/CMakeLists.txt

14 lines
364 B
CMake

set(EXTRA_LIBS ${EXTRA_LIBS} pthread)
add_executable(owlps-udp-to-http owlps-udp-to-http.c)
target_link_libraries(owlps-udp-to-http
libowlps.so
libowlps-resultreader.so
${EXTRA_LIBS})
add_executable(owlps-udp-to-http.semistatic owlps-udp-to-http.c)
target_link_libraries(owlps-udp-to-http.semistatic
libowlps.a
libowlps-resultreader.a
${EXTRA_LIBS})