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/module_manager/test/CMakeLists.txt
2024-11-27 19:50:50 +08:00

17 lines
291 B
CMake

add_executable(gtest_module_manager
gtest_module_manager_main.cpp
)
include_directories(${CMAKE_SOURCE_DIR}/infra/module_manager/)
target_link_libraries(
gtest_module_manager
module_manager
dl
"-rdynamic"
gtest
)
include(GoogleTest)
gtest_discover_tests(gtest_module_manager)