diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-24 19:16:44 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-24 19:16:44 +0300 |
commit | 81c9070c616ca828b1848e7e6f1543f45ec384f8 (patch) | |
tree | 0d0ada152acbf92b13656be480a84ff97ba05712 /test/unit_tests/CMakeLists.txt | |
parent | add stress_test.sh as a CTest test (diff) | |
download | math-server-81c9070c616ca828b1848e7e6f1543f45ec384f8.tar.gz math-server-81c9070c616ca828b1848e7e6f1543f45ec384f8.zip |
README: update
Diffstat (limited to '')
-rw-r--r-- | test/unit_tests/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/unit_tests/CMakeLists.txt b/test/unit_tests/CMakeLists.txt index 7669e30..16da801 100644 --- a/test/unit_tests/CMakeLists.txt +++ b/test/unit_tests/CMakeLists.txt @@ -4,7 +4,9 @@ set_target_properties(unit_tests PROPERTIES OUTPUT_NAME math-server-unit-tests) target_link_libraries(unit_tests PRIVATE lexer parser) -find_package(Boost REQUIRED COMPONENTS unit_test_framework) +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) install(TARGETS unit_tests RUNTIME DESTINATION bin) |