This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
stellar-stellar/infra/exdata/test/CMakeLists.txt

15 lines
231 B
CMake
Raw Normal View History

2024-09-14 17:41:23 +08:00
add_executable(gtest_exdata
gtest_exdata_main.cpp
)
2024-09-14 17:41:23 +08:00
include_directories(${CMAKE_SOURCE_DIR}/infra/exdata/)
target_link_libraries(
2024-09-14 17:41:23 +08:00
gtest_exdata
exdata
gtest
gmock
)
include(GoogleTest)
2024-09-14 17:41:23 +08:00
gtest_discover_tests(gtest_exdata)