blob: 01b13ae14c8001ac12760231f24bdcd78b28bf89 (
plain)
1
2
3
4
5
6
7
|
add_library(pluginloader STATIC pluginloader.cpp pluginloader.h)
target_link_libraries(pluginloader PUBLIC Qt6::Core Qt6::Widgets)
if(TESTING)
add_executable(load_plugin test/pluginloader.cpp)
target_link_libraries(load_plugin GTest::gtest GTest::gtest_main Qt6::Core)
endif()
|