c003db22c6
Summary: Ensures that we can load the plugin when running only from build dir. Reviewers: #kwin Subscribers: kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D16762
18 lines
534 B
CMake
18 lines
534 B
CMake
set(idletime_plugin_SRCS
|
|
poller.cpp
|
|
)
|
|
|
|
add_library(KF5IdleTimeKWinWaylandPrivatePlugin MODULE ${idletime_plugin_SRCS})
|
|
set_target_properties(KF5IdleTimeKWinWaylandPrivatePlugin PROPERTIES LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin/kf5/org.kde.kidletime.platforms/")
|
|
target_link_libraries(KF5IdleTimeKWinWaylandPrivatePlugin
|
|
kwin
|
|
KF5::IdleTime
|
|
KF5::WaylandClient
|
|
)
|
|
|
|
install(
|
|
TARGETS
|
|
KF5IdleTimeKWinWaylandPrivatePlugin
|
|
DESTINATION
|
|
${PLUGIN_INSTALL_DIR}/kf5/org.kde.kidletime.platforms/
|
|
)
|