summaryrefslogtreecommitdiffstats
path: root/framework/actions/CMakeLists.txt
blob: 72dd9fcde1442f7e995481c857225c47e25c82f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
set(SRCS
    actionplugin.cpp
    action.cpp
    actionhandler.cpp
    actionbroker.cpp
    actionresult.cpp
    context.cpp
)

add_library(actionplugin SHARED ${SRCS})

target_link_libraries(actionplugin KAsync sink)
qt5_use_modules(actionplugin Core Quick Qml)

install(TARGETS actionplugin DESTINATION ${FRAMEWORK_INSTALL_DIR})

add_subdirectory(tests)