Descent3/misc/tests/CMakeLists.txt
Azamat H. Hackimov d82d3a2c3a Unittests for misc
Unittests that used for testing refactored CleanupStr() in #207.
2024-05-01 02:46:20 +03:00

11 lines
146 B
CMake

add_executable(
misc_tests
misc_tests.cpp
)
target_link_libraries(
misc_tests
GTest::gtest_main
misc
)
gtest_discover_tests(misc_tests)