diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-17 10:49:37 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-17 10:49:37 +0300 |
commit | 9ada1c0fd699d9b9c746688c5c39cd72a0c7593d (patch) | |
tree | 31c95244174fb686f09e0979d0d2e42ede357c8e /test/unit_tests | |
parent | AppVeyor: only Debug on Win32 (diff) | |
download | math-server-9ada1c0fd699d9b9c746688c5c39cd72a0c7593d.tar.gz math-server-9ada1c0fd699d9b9c746688c5c39cd72a0c7593d.zip |
cmake: minor tweks for the greater good
Diffstat (limited to 'test/unit_tests')
-rw-r--r-- | test/unit_tests/CMakeLists.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/unit_tests/CMakeLists.txt b/test/unit_tests/CMakeLists.txt index 314fb58..5a46f01 100644 --- a/test/unit_tests/CMakeLists.txt +++ b/test/unit_tests/CMakeLists.txt @@ -1,11 +1,12 @@ -find_package(Boost REQUIRED COMPONENTS unit_test_framework) - -add_executable(unit_tests main.cpp lexer.cpp parser.cpp) +file(GLOB unit_tests_cpp "*.cpp") +add_executable(unit_tests ${unit_tests_cpp}) target_link_libraries(unit_tests PRIVATE lexer parser) -target_link_libraries(unit_tests PRIVATE Boost::disable_autolinking Boost::unit_test_framework) target_include_directories(unit_tests PRIVATE ../..) set_target_properties(unit_tests PROPERTIES OUTPUT_NAME math-server-unit-tests) +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) if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") install(FILES "$<TARGET_PDB_FILE:unit_tests>" DESTINATION bin OPTIONAL) |