18 lines
339 B
CMake
18 lines
339 B
CMake
|
|
add_executable(gtest_plugin_manager
|
||
|
|
gtest_plugin_manager.cpp
|
||
|
|
)
|
||
|
|
|
||
|
|
target_link_libraries(
|
||
|
|
gtest_plugin_manager
|
||
|
|
gtest_main
|
||
|
|
plugin_manager
|
||
|
|
session_manager
|
||
|
|
toml
|
||
|
|
dl
|
||
|
|
)
|
||
|
|
|
||
|
|
include(GoogleTest)
|
||
|
|
gtest_discover_tests(gtest_plugin_manager)
|
||
|
|
|
||
|
|
add_subdirectory(test_plugins/plugins_library)
|
||
|
|
file(COPY test_plugins/plugins_config DESTINATION ./)
|