qtrocket/sim/tests/CMakeLists.txt

17 lines
226 B
CMake

enable_testing()
add_executable(sim_tests
USStandardAtmosphereTests.cpp
)
target_link_libraries(sim_tests
sim
GTest::gtest_main
)
include(GoogleTest)
gtest_discover_tests(sim_tests)
add_test(sim_tests sim_tests)