diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-15 01:10:15 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-15 01:10:15 +0300 |
commit | 933654fbae37b3726cfa449d187759fe06f8fcc7 (patch) | |
tree | 8d961c269665d77a814a8e2cbbd415997b3d2897 /test/CMakeLists.txt | |
parent | cmd_line.cpp: move implementation from cmd_line.hpp (diff) | |
download | winapi-common-933654fbae37b3726cfa449d187759fe06f8fcc7.tar.gz winapi-common-933654fbae37b3726cfa449d187759fe06f8fcc7.zip |
test/ -> test/unit_tests/
Diffstat (limited to '')
-rw-r--r-- | test/CMakeLists.txt | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 33a6101..bed23ce 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,12 +1 @@ -file(GLOB unit_tests_src "*.cpp") -add_executable(unit_tests ${unit_tests_src}) -target_link_libraries(unit_tests PRIVATE winapi_common) -set_target_properties(unit_tests PROPERTIES OUTPUT_NAME winapi-common-unit-tests) - -find_package(Boost REQUIRED COMPONENTS unit_test_framework) -target_link_libraries(unit_tests PRIVATE Boost::disable_autolinking Boost::unit_test_framework) - -install(TARGETS unit_tests RUNTIME DESTINATION bin) -if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") - install(FILES "$<TARGET_PDB_FILE:unit_tests>" DESTINATION bin OPTIONAL) -endif() +add_subdirectory(unit_tests) |