diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-06 22:07:33 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-06 22:09:47 +0300 |
commit | a70f6cd1ba7fae777b16aab9a677365e4414c938 (patch) | |
tree | db96eaa92396d8404ee77996c75fbf14bc2d1e12 /test | |
parent | cmake: check CTest tests output (diff) | |
download | winapi-utf8-a70f6cd1ba7fae777b16aab9a677365e4414c938.tar.gz winapi-utf8-a70f6cd1ba7fae777b16aab9a677365e4414c938.zip |
cmake: slight CMakeLists.txt refactoring
Diffstat (limited to 'test')
-rw-r--r-- | test/CMakeLists.txt | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index d062b19..bf023a6 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,12 +1,10 @@ +find_package(Boost REQUIRED COMPONENTS unit_test_framework) + file(GLOB unit_tests_src "*.cpp") add_executable(unit_tests ${unit_tests_src}) set_target_properties(unit_tests PROPERTIES OUTPUT_NAME winapi-utf8-unit-tests) - target_link_libraries(unit_tests PRIVATE winapi_utf8) - -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) install_pdbs(TARGETS unit_tests DESTINATION bin) |