14 lines
165 B
CMake
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) |