diff options
Diffstat (limited to 'src/CMakeLists.txt~')
-rw-r--r-- | src/CMakeLists.txt~ | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/CMakeLists.txt~ b/src/CMakeLists.txt~ index 80196d9..ebe2f50 100644 --- a/src/CMakeLists.txt~ +++ b/src/CMakeLists.txt~ @@ -31,9 +31,18 @@ include_directories( ${BOOST_INCLUDE_DIRS} ) +set(LINK_LIBRARIES ${LINK_LIBRARIES} + ${LIBCONFIGPP_LIBRARY} + ${Boost_LIBRARIES} +) + set(SOURCES_CLIENT + "${CMAKE_SOURCE_DIR}/ConfigReader/ConfigReader.cpp" "${CMAKE_SOURCE_DIR}/UDPClient/UDPClient.cpp" - "${CMAKE_SOURCE_DIR}/main.cpp" + "${CMAKE_SOURCE_DIR}/DetectorModule/DetectorModule.cpp" + "${CMAKE_SOURCE_DIR}/Detector/Detector.cpp" + "${CMAKE_SOURCE_DIR}/main_client.cpp" + "${CMAKE_SOURCE_DIR}/ReceiverThreads/ReceiverThreads.cpp" ) set(SOURCES_SERVER @@ -43,5 +52,6 @@ set(SOURCES_SERVER add_executable(onlineDetectorSimulatorServer ${SOURCES_SERVER}) add_executable(onlineDetectorSimulatorClient ${SOURCES_CLIENT}) - +target_link_libraries(onlineDetectorSimulatorClient ${LINK_LIBRARIES}) +target_link_libraries(onlineDetectorSimulatorServer ${LINK_LIBRARIES}) |