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

14 lines
175 B
CMake
Raw Normal View History

2022-07-05 19:48:31 +08:00
# 开启测试
add_executable(gtest_stellar
gtest_main.cpp
2022-07-05 19:48:31 +08:00
)
target_link_libraries(
gtest_stellar
2022-07-05 19:48:31 +08:00
gtest_main
)
include(GoogleTest)
gtest_discover_tests(gtest_stellar)