diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-07 00:26:56 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-07 00:36:07 +0300 |
commit | f1d749e3cd3aaa5ec875ea29ca010b73d3174f2c (patch) | |
tree | d0231b9283ea744223964d2f9d4e994dd165d96e /test/unit_tests/CMakeLists.txt | |
parent | cmake: check CTest tests output (diff) | |
download | math-server-f1d749e3cd3aaa5ec875ea29ca010b73d3174f2c.tar.gz math-server-f1d749e3cd3aaa5ec875ea29ca010b73d3174f2c.zip |
cmake: slight CMakeLists.txt refactoring
Diffstat (limited to '')
-rw-r--r-- | test/unit_tests/CMakeLists.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/unit_tests/CMakeLists.txt b/test/unit_tests/CMakeLists.txt index b9f87bf..312d2f9 100644 --- a/test/unit_tests/CMakeLists.txt +++ b/test/unit_tests/CMakeLists.txt @@ -1,14 +1,14 @@ -file(GLOB unit_tests_src "*.cpp") -add_executable(unit_tests ${unit_tests_src}) -set_target_properties(unit_tests PROPERTIES OUTPUT_NAME math-server-unit-tests) - -target_link_libraries(unit_tests PRIVATE lexer parser) - find_package(Boost 1.67.0 REQUIRED COMPONENTS unit_test_framework) # It would be Boost 1.66 in a perfect world, but the tests fail to compile with # that: https://lists.boost.org/boost-bugs/2018/01/49711.php. -target_link_libraries(unit_tests PRIVATE Boost::disable_autolinking Boost::unit_test_framework) +file(GLOB unit_tests_src "*.cpp") +add_executable(unit_tests ${unit_tests_src}) +set_target_properties(unit_tests PROPERTIES OUTPUT_NAME math-server-unit-tests) +target_link_libraries(unit_tests PRIVATE lexer parser) +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) |