aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/unit_tests
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-03-24 19:16:44 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-03-24 19:16:44 +0300
commit81c9070c616ca828b1848e7e6f1543f45ec384f8 (patch)
tree0d0ada152acbf92b13656be480a84ff97ba05712 /test/unit_tests
parentadd stress_test.sh as a CTest test (diff)
downloadmath-server-81c9070c616ca828b1848e7e6f1543f45ec384f8.tar.gz
math-server-81c9070c616ca828b1848e7e6f1543f45ec384f8.zip
README: update
Diffstat (limited to 'test/unit_tests')
-rw-r--r--test/unit_tests/CMakeLists.txt4
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)