diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-18 00:34:02 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-18 00:34:02 +0300 |
commit | 6b009273e76711fd484d436d0b6835cc6aa32089 (patch) | |
tree | 5cf230ee2a854247deb6c66eeb2595363d7ab60e /test/unit_tests/CMakeLists.txt | |
parent | AppVeyor: reorder images, VS 2019 first (diff) | |
download | math-server-6b009273e76711fd484d436d0b6835cc6aa32089.tar.gz math-server-6b009273e76711fd484d436d0b6835cc6aa32089.zip |
cmake: files are per-directory, not per-extension
Diffstat (limited to '')
-rw-r--r-- | test/unit_tests/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit_tests/CMakeLists.txt b/test/unit_tests/CMakeLists.txt index d84829d..099fc2c 100644 --- a/test/unit_tests/CMakeLists.txt +++ b/test/unit_tests/CMakeLists.txt @@ -1,5 +1,5 @@ -file(GLOB unit_tests_cpp "*.cpp") -add_executable(unit_tests ${unit_tests_cpp}) +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) |