summaryrefslogtreecommitdiff
path: root/infra/exdata/test/CMakeLists.txt
blob: 8b7b87e9b8b94462530f3546eac9e1ad2582d51a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)