blob: 9aef78e15ee9cc62e399dc017c81ea7cebb730a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
enable_testing()
add_executable(
hello_test
hello_test.cc
)
target_link_libraries(
hello_test
GTest::gtest_main
)
include(GoogleTest)
gtest_discover_tests(hello_test)
|