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-2022/test/CMakeLists.txt
2022-08-05 12:55:08 +08:00

14 lines
170 B
CMake

# 开启测试
add_executable(gtest_stellar
gtest_main.cpp
)
target_link_libraries(
gtest_stellar
gtest
)
include(GoogleTest)
gtest_discover_tests(gtest_stellar)