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-07-05 19:48:31 +08:00

14 lines
165 B
CMake

# 开启测试
add_executable(gtest_vapp
gtest_main.cc
)
target_link_libraries(
gtest_vapp
gtest_main
)
include(GoogleTest)
gtest_discover_tests(gtest_vapp)