From b5001a9a6e6d0f63f2f2d26a2f710519a6fcc6a0 Mon Sep 17 00:00:00 2001 From: open-license-manager <rillf@maildrop.cc> Date: 周一, 26 5月 2014 01:00:10 +0800 Subject: [PATCH] pc id --- test/library/CMakeLists.txt | 34 +++++++++++++++++++++++++++++++++- 1 files changed, 33 insertions(+), 1 deletions(-) diff --git a/test/library/CMakeLists.txt b/test/library/CMakeLists.txt index 6a1f0d0..d4067c2 100644 --- a/test/library/CMakeLists.txt +++ b/test/library/CMakeLists.txt @@ -1 +1,33 @@ -add_subdirectory(reader) \ No newline at end of file +link_directories ( ${Boost_LIBRARY_DIRS} ) + +add_executable( + license_reader_test + LicenseReader_test.cpp +) + +target_link_libraries( + license_reader_test + license++_static + ${Boost_LIBRARIES} +) + +SET_TARGET_PROPERTIES(license_reader_test PROPERTIES LINK_SEARCH_START_STATIC ON) +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_LIBRARIES} + ) + + 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