14 lines
239 B
CMake
14 lines
239 B
CMake
add_executable(gtest_mq gtest_mq_main.cpp)
|
|
|
|
target_include_directories(gtest_mq PRIVATE ${CMAKE_SOURCE_DIR}/infra/)
|
|
|
|
target_link_libraries(
|
|
gtest_mq
|
|
mq
|
|
"-rdynamic"
|
|
gtest
|
|
gmock
|
|
)
|
|
|
|
include(GoogleTest)
|
|
gtest_discover_tests(gtest_mq) |