From ef7df8048d1067d3148287f27af9047743f1e2ae Mon Sep 17 00:00:00 2001 From: gcontini <1121667+gcontini@users.noreply.github.com> Date: 周日, 15 3月 2020 16:26:21 +0800 Subject: [PATCH] Merge branch 'feature/pc_identifiers' into develop issues #2 #3 #14 #49 --- test/library/os/CMakeLists.txt | 29 +++++++++++++++++++++++++++++ 1 files changed, 29 insertions(+), 0 deletions(-) diff --git a/test/library/os/CMakeLists.txt b/test/library/os/CMakeLists.txt new file mode 100644 index 0000000..1af4e92 --- /dev/null +++ b/test/library/os/CMakeLists.txt @@ -0,0 +1,29 @@ +add_executable( test_network + network_test.cpp +) + +target_link_libraries( test_network + licensecc_static + Boost::unit_test_framework + Boost::filesystem + Boost::system +) + +ADD_TEST(NAME test_network COMMAND test_network) + +add_executable( test_execution_environment + execution_environment_test.cpp +) + +target_link_libraries( test_execution_environment + licensecc_static + Boost::unit_test_framework + Boost::filesystem + Boost::system +) + +ADD_TEST(NAME test_execution_environment COMMAND test_execution_environment) +if(CODE_COVERAGE AND UNIX) + target_compile_options(test_network PUBLIC -O0 -g --coverage) + target_compile_options(test_execution_environment PUBLIC -O0 -g --coverage) +endif(CODE_COVERAGE AND UNIX) -- Gitblit v1.9.1