18 lines
350 B
CMake
18 lines
350 B
CMake
add_executable(gtest_plugin_manager
|
|
plugin_manager_gtest_main.cpp
|
|
)
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/infra/plugin_manager/)
|
|
include_directories(${CMAKE_SOURCE_DIR}/infra/tuple/)
|
|
|
|
target_link_libraries(
|
|
gtest_plugin_manager
|
|
plugin_manager
|
|
dl
|
|
"-rdynamic"
|
|
gtest
|
|
gmock
|
|
)
|
|
|
|
include(GoogleTest)
|
|
gtest_discover_tests(gtest_plugin_manager) |