diff options
-rw-r--r-- | README.md | 9 | ||||
-rw-r--r-- | test/unit_tests/CMakeLists.txt | 4 |
2 files changed, 9 insertions, 4 deletions
@@ -8,10 +8,13 @@ Development Build using CMake. Depends on Boost.{Filesystem,Program_options,Regex,Test}. -Boost version 1.67 or higher is required (it would be Boost 1.66 in a perfect -world, but the tests [fail to compile] with that). -[fail to compile]: https://lists.boost.org/boost-bugs/2018/01/49711.php +There's a Makefile with useful shortcuts to build the project in the .build/ +directory along with the dependencies: + + make deps + make build + make test Usage ----- 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) |