summaryrefslogtreecommitdiff
path: root/src/plugins/CMakeLists.txt
blob: 9d80b057d7e2b98d654b1e6b72a8afdb2e44bf8c (plain)
1
2
3
4
5
6
7
add_library(pluginloader STATIC pluginloader.cpp pluginloader.h rplugininterface.hpp)
target_link_libraries(pluginloader PUBLIC Qt6::Core Qt6::Widgets)

if(${CMAKE_BUILD_TYPE} STREQUAL "Debug")
    add_executable(load_plugin test/pluginloader.cpp)
    target_link_libraries(load_plugin GTest::gtest GTest::gtest_main pluginloader)
endif()