Descent3/misc/tests/CMakeLists.txt

13 lines
173 B
CMake

set(CMAKE_FOLDER "tests")
add_executable(
misc_tests
misc_tests.cpp
)
target_link_libraries(
misc_tests
GTest::gtest_main
misc
)
gtest_discover_tests(misc_tests)