hyporo-cpp/source/hpr/mesh/tests/CMakeLists.txt

15 lines
258 B
CMake
Raw Normal View History

2022-12-13 23:09:36 +05:00
file(GLOB tests_cpp "*.cpp")
add_executable(${PROJECT_NAME}-tests
${tests_cpp}
)
target_link_libraries(${PROJECT_NAME}-tests
PUBLIC
hpr::${PROJECT_NAME}
PRIVATE
GTest::gtest_main
)
gtest_add_tests(TARGET ${PROJECT_NAME}-tests)