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/CMakeLists.txt
2024-09-14 13:25:10 +08:00

8 lines
443 B
CMake

add_library(module_manager module_manager.c)
target_include_directories(module_manager PUBLIC ${CMAKE_CURRENT_LIST_DIR})
target_include_directories(module_manager PUBLIC ${CMAKE_SOURCE_DIR}/include/)
target_include_directories(module_manager PUBLIC ${CMAKE_SOURCE_DIR}/infra/)
target_include_directories(module_manager PUBLIC ${CMAKE_SOURCE_DIR}/deps/)
target_link_libraries(module_manager PUBLIC toml ${CMAKE_DL_LIBS})
add_subdirectory(test)