X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fio%2FCMakeLists.txt;h=17483d63923f29fd5a770d14c4b130dab077e7b8;hb=201cb61f842ef50a19438e3872ba22e588fa1afc;hp=ac2b7781e0b02c86c548c87f00036cc04ed1a287;hpb=5871b54172ea5d6c97f82c71f8df598e63a96c16;p=simgear.git diff --git a/simgear/io/CMakeLists.txt b/simgear/io/CMakeLists.txt index ac2b7781..17483d63 100644 --- a/simgear/io/CMakeLists.txt +++ b/simgear/io/CMakeLists.txt @@ -36,33 +36,34 @@ set(SOURCES simgear_component(io io "${SOURCES}" "${HEADERS}") +if(ENABLE_TESTS) + +if (SIMGEAR_SHARED) + set(TEST_LIBS SimGearCore) +else() + set(TEST_LIBS SimGearCore + ${CMAKE_THREAD_LIBS_INIT} + ${WINSOCK_LIBRARY} + ${ZLIB_LIBRARY} + ${RT_LIBRARY}) +endif() + add_executable(test_sock socktest.cxx) -target_link_libraries(test_sock sgio sgstructure sgthreads sgdebug - ${CMAKE_THREAD_LIBS_INIT} - ${WINSOCK_LIBRARY} - ${RT_LIBRARY}) +target_link_libraries(test_sock ${TEST_LIBS}) add_executable(test_http test_HTTP.cxx) -target_link_libraries(test_http - sgio sgstructure sgthreads sgtiming sgmisc sgdebug - ${CMAKE_THREAD_LIBS_INIT} - ${WINSOCK_LIBRARY} - ${RT_LIBRARY}) +target_link_libraries(test_http ${TEST_LIBS}) add_test(http ${EXECUTABLE_OUTPUT_PATH}/test_http) add_executable(httpget httpget.cxx) -target_link_libraries(httpget - sgio sgstructure sgthreads sgtiming sgmisc sgdebug - ${CMAKE_THREAD_LIBS_INIT} - ${WINSOCK_LIBRARY} - ${RT_LIBRARY}) +target_link_libraries(httpget ${TEST_LIBS}) add_executable(decode_binobj decode_binobj.cxx) -target_link_libraries(decode_binobj - sgbucket sgio sgstructure sgthreads sgtiming sgmisc sgdebug - ${CMAKE_THREAD_LIBS_INIT} - ${WINSOCK_LIBRARY} - ${ZLIB_LIBRARY} - ${RT_LIBRARY}) - \ No newline at end of file +target_link_libraries(decode_binobj ${TEST_LIBS}) + +add_executable(test_binobj test_binobj.cxx) +target_link_libraries(test_binobj ${TEST_LIBS}) + +add_test(binobj ${EXECUTABLE_OUTPUT_PATH}/test_binobj) +endif(ENABLE_TESTS)