2009-06-19 09:18:07 +00:00
|
|
|
########### decoration ###############
|
2012-07-27 08:03:22 +00:00
|
|
|
include_directories(
|
|
|
|
./lib
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
2013-10-10 23:00:31 +00:00
|
|
|
${KDE4_INCLUDES}
|
2012-07-27 08:03:22 +00:00
|
|
|
)
|
2009-06-19 09:18:07 +00:00
|
|
|
|
2010-04-12 19:28:58 +00:00
|
|
|
set(kwin3_aurorae_PART_SRCS
|
|
|
|
aurorae.cpp
|
|
|
|
lib/auroraetheme.cpp
|
|
|
|
lib/themeconfig.cpp
|
|
|
|
)
|
2009-06-19 09:18:07 +00:00
|
|
|
|
|
|
|
kde4_add_plugin(kwin3_aurorae ${kwin3_aurorae_PART_SRCS})
|
|
|
|
|
2013-07-25 16:05:32 +00:00
|
|
|
target_link_libraries(kwin3_aurorae
|
|
|
|
KF5::KConfigCore
|
|
|
|
KF5::KService
|
2013-10-10 23:10:11 +00:00
|
|
|
KF5::plasma
|
2013-08-20 07:10:18 +00:00
|
|
|
Qt5::Declarative
|
2013-07-25 16:05:32 +00:00
|
|
|
kdecorations
|
|
|
|
)
|
2009-06-19 09:18:07 +00:00
|
|
|
|
|
|
|
install(TARGETS kwin3_aurorae DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
|
|
|
2012-07-27 08:03:22 +00:00
|
|
|
set(decoration_plugin_SRCS
|
|
|
|
decorationplugin.cpp
|
|
|
|
decorationoptions.cpp
|
|
|
|
colorhelper.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
add_library(decorationplugin SHARED ${decoration_plugin_SRCS})
|
2013-07-25 16:05:32 +00:00
|
|
|
target_link_libraries(decorationplugin
|
2013-10-01 09:45:46 +00:00
|
|
|
Qt5::Quick
|
2013-07-25 16:05:32 +00:00
|
|
|
kdecorations
|
2013-08-20 06:47:47 +00:00
|
|
|
KF5::KConfigWidgets
|
2013-10-10 23:10:11 +00:00
|
|
|
KF5::plasma
|
2013-07-25 16:05:32 +00:00
|
|
|
)
|
2013-10-01 09:45:46 +00:00
|
|
|
install(TARGETS decorationplugin DESTINATION ${QML_INSTALL_DIR}/org/kde/kwin/decoration)
|
2012-07-27 08:03:22 +00:00
|
|
|
|
2009-06-19 09:18:07 +00:00
|
|
|
########### install files ###############
|
|
|
|
|
|
|
|
install( FILES aurorae.desktop DESTINATION ${DATA_INSTALL_DIR}/kwin )
|
2009-08-05 10:37:24 +00:00
|
|
|
install( FILES aurorae.knsrc DESTINATION ${CONFIG_INSTALL_DIR} )
|
2012-01-07 16:25:21 +00:00
|
|
|
install( FILES
|
|
|
|
qml/aurorae.qml
|
|
|
|
qml/AuroraeButton.qml
|
|
|
|
qml/AuroraeButtonGroup.qml
|
2012-01-10 18:26:59 +00:00
|
|
|
qml/AuroraeMaximizeButton.qml
|
2012-01-07 16:25:21 +00:00
|
|
|
qml/Decoration.qml
|
|
|
|
qml/DecorationButton.qml
|
|
|
|
qml/MenuButton.qml
|
2012-12-27 09:29:13 +00:00
|
|
|
qml/AppMenuButton.qml
|
2012-01-07 16:25:21 +00:00
|
|
|
DESTINATION ${DATA_INSTALL_DIR}/kwin/aurorae )
|
2012-07-27 08:03:22 +00:00
|
|
|
install( FILES
|
|
|
|
qml/Decoration.qml
|
|
|
|
qml/DecorationButton.qml
|
|
|
|
qml/MenuButton.qml
|
2012-12-27 09:29:13 +00:00
|
|
|
qml/AppMenuButton.qml
|
2012-07-27 08:03:22 +00:00
|
|
|
qml/ButtonGroup.qml
|
|
|
|
qml/qmldir
|
2013-10-01 09:45:46 +00:00
|
|
|
DESTINATION ${QML_INSTALL_DIR}/org/kde/kwin/decoration )
|
2012-07-22 15:35:18 +00:00
|
|
|
install( FILES kwindecoration.desktop DESTINATION ${SERVICETYPES_INSTALL_DIR} )
|