OpenLCP/test/CMakeLists.txt

9 lines
189 B
CMake
Raw Normal View History

2021-08-22 15:32:46 -04:00
find_package(GTest)
if (GTest_FOUND)
file(GLOB SRCS *.cpp)
add_executable(Tests ${SRCS})
target_link_libraries(Tests GTest::gtest ESTA)
gtest_discover_tests(Tests)
endif()