blob: c534b9092727f09565eef1603d1f899c7c62c198 (
plain)
1
2
3
4
5
6
7
8
|
find_package(GTest CONFIG REQUIRED)
include(GoogleTest)
add_subdirectory(common)
add_library(cru_test_base INTERFACE)
target_link_libraries(cru_test_base INTERFACE GTest::gtest GTest::gtest_main)
|