9 lines
147 B
CMake
9 lines
147 B
CMake
add_executable(
|
|
test_mp_basic
|
|
test_basic.cpp
|
|
)
|
|
target_link_libraries(
|
|
test_mp_basic
|
|
GTest::gtest_main
|
|
)
|
|
gtest_discover_tests(test_mp_basic) |