From 1ae5de2f59799a5d02e64cfa36bd1d3b36827f43 Mon Sep 17 00:00:00 2001 From: open-license-manager <rillf@maildrop.cc> Date: 周三, 13 8月 2014 16:21:41 +0800 Subject: [PATCH] build linux --- test/library/CMakeLists.txt | 37 ++++++++++++++++++++++++++++++++++++- 1 files changed, 36 insertions(+), 1 deletions(-) diff --git a/test/library/CMakeLists.txt b/test/library/CMakeLists.txt index 6a1f0d0..a88aae1 100644 --- a/test/library/CMakeLists.txt +++ b/test/library/CMakeLists.txt @@ -1 +1,36 @@ -add_subdirectory(reader) \ No newline at end of file +add_executable( + license_reader_test + LicenseReader_test.cpp +) +#add_dependencies( license_reader_test boost_filesystem ) + +target_link_libraries( + license_reader_test + license++_static + boost_filesystem + boost_test +) + +#SET_TARGET_PROPERTIES(license_reader_test PROPERTIES LINK_SEARCH_START_STATIC ON) +#SET_TARGET_PROPERTIES(license_reader_test PROPERTIES LINK_SEARCH_END_STATIC OFF) +ADD_TEST(license_reader_test ${EXECUTABLE_OUTPUT_PATH}/license_reader_test) + +IF(WIN32) +#test windows +ELSE(WIN32) + add_executable( + os_linux_test + Os_Linux_test.cpp + ) + + target_link_libraries( + os_linux_test + os + ${Boost_test_LIBRARY} + ) + + #add_dependencies( os_linux_test ) + #SET_TARGET_PROPERTIES(os_linux_test PROPERTIES LINK_SEARCH_START_STATIC ON) + ADD_TEST(os_linux_test ${EXECUTABLE_OUTPUT_PATH}/os_linux_test) + +ENDIF(WIN32) \ No newline at end of file -- Gitblit v1.9.1