This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
stellar-stellar/infra/mq/test/CMakeLists.txt
2024-09-13 19:04:59 +08:00

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)