14 lines
175 B
CMake
14 lines
175 B
CMake
|
|
# 开启测试
|
|
|
|
add_executable(gtest_stellar
|
|
gtest_main.cpp
|
|
)
|
|
|
|
target_link_libraries(
|
|
gtest_stellar
|
|
gtest_main
|
|
)
|
|
|
|
include(GoogleTest)
|
|
gtest_discover_tests(gtest_stellar) |