mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 11:28:56 +00:00
13 lines
173 B
CMake
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)
|