feat(module manager): from plugin manager to module manager

This commit is contained in:
yangwei
2024-09-14 12:18:26 +08:00
parent 0b142cd0bb
commit 1f55a6f240
17 changed files with 1987 additions and 608 deletions

View File

@@ -0,0 +1,19 @@
add_executable(gtest_module_manager
module_manager_gtest_main.cpp
)
include_directories(${CMAKE_SOURCE_DIR}/infra/plugin_manager/)
include_directories(${CMAKE_SOURCE_DIR}/infra/tuple/)
target_link_libraries(
gtest_module_manager
module_manager
dl
"-rdynamic"
gtest
gmock
)
include(GoogleTest)
gtest_discover_tests(gtest_module_manager)

File diff suppressed because it is too large Load Diff