From ac7ea79c330d9684e39cb41ef528a1c44eb13616 Mon Sep 17 00:00:00 2001 From: gcontini <1121667+gcontini@users.noreply.github.com> Date: 周六, 30 11月 2019 16:20:10 +0800 Subject: [PATCH] update install targets --- test/functional/CMakeLists.txt | 63 ++++++++++++++++++++++++++++--- 1 files changed, 57 insertions(+), 6 deletions(-) diff --git a/test/functional/CMakeLists.txt b/test/functional/CMakeLists.txt index ee89b80..cdcc680 100644 --- a/test/functional/CMakeLists.txt +++ b/test/functional/CMakeLists.txt @@ -1,14 +1,65 @@ +ADD_LIBRARY(license_generator_snippet STATIC + generate-license.cpp +) + +target_link_libraries( + license_generator_snippet + ${Boost_LIBRARIES} +) add_executable( - standard_license_test + test_standard_license standard-license_test.cpp ) target_link_libraries( - standard_license_test - license_generator_lib - license++_static + test_standard_license + licensecc_static + license_generator_snippet + ${Boost_LIBRARIES} ) -SET_TARGET_PROPERTIES(standard_license_test PROPERTIES LINK_SEARCH_START_STATIC ON) -ADD_TEST(standard_license_test ${EXECUTABLE_OUTPUT_PATH}/standard_license_test) +add_executable( + test_date + date_test.cpp +) + +target_link_libraries( + test_date + licensecc_static + license_generator_snippet + ${Boost_LIBRARIES} +) + +add_executable( + test_signature_verifier + signature_verifier_test.cpp +) + +target_link_libraries( + test_signature_verifier + licensecc_static + license_generator_snippet + ${Boost_LIBRARIES} +) + + +add_executable( + test_volid + volid_test.cpp +) + +target_link_libraries( + test_volid + licensecc_static + license_generator_snippet + ${Boost_LIBRARIES} +) + + +ADD_TEST(NAME test_date COMMAND test_date WORKING_DIRECTORY ${CMAKE_BINARY_DIR}) +ADD_TEST(NAME test_standard_license COMMAND test_standard_license WORKING_DIRECTORY ${CMAKE_BINARY_DIR}) +ADD_TEST(NAME test_signature_verifier COMMAND test_signature_verifier WORKING_DIRECTORY ${CMAKE_BINARY_DIR}) +ADD_TEST(NAME test_volid COMMAND test_volid WORKING_DIRECTORY ${CMAKE_BINARY_DIR}) + + -- Gitblit v1.9.1