14 lines
223 B
CMake
14 lines
223 B
CMake
add_executable(gtest_exdata
|
|
gtest_exdata_main.cpp
|
|
)
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/infra/exdata/)
|
|
|
|
target_link_libraries(
|
|
gtest_exdata
|
|
exdata
|
|
gtest
|
|
)
|
|
|
|
include(GoogleTest)
|
|
gtest_discover_tests(gtest_exdata) |