2014-04-30 06:55:58 +00:00
|
|
|
# KI18N Translation Domain for this library
|
|
|
|
add_definitions(-DTRANSLATION_DOMAIN=\"kcmkwindecoration\")
|
|
|
|
|
2010-01-19 13:44:22 +00:00
|
|
|
# need a header file from Aurorae sources
|
|
|
|
include_directories(
|
2014-03-18 11:08:14 +00:00
|
|
|
${KWIN_SOURCE_DIR}/clients/aurorae/src/lib
|
2014-06-06 06:07:56 +00:00
|
|
|
../utils/
|
2010-01-19 13:44:22 +00:00
|
|
|
)
|
|
|
|
|
2014-03-18 11:08:14 +00:00
|
|
|
set(AURORAE_SOURCE_DIR ${KWIN_SOURCE_DIR}/clients/aurorae/src/lib/)
|
2010-04-16 21:03:34 +00:00
|
|
|
|
2010-01-19 13:44:22 +00:00
|
|
|
set(kcm_kwindecoration_PART_SRCS
|
|
|
|
kwindecoration.cpp
|
|
|
|
buttons.cpp
|
|
|
|
buttonsconfigdialog.cpp
|
|
|
|
configdialog.cpp
|
|
|
|
preview.cpp
|
|
|
|
decorationmodel.cpp
|
2010-04-16 21:03:34 +00:00
|
|
|
${AURORAE_SOURCE_DIR}/auroraetheme.cpp
|
|
|
|
${AURORAE_SOURCE_DIR}/themeconfig.cpp
|
2010-01-19 13:44:22 +00:00
|
|
|
)
|
|
|
|
|
2014-04-30 06:55:58 +00:00
|
|
|
ki18n_wrap_ui(kcm_kwindecoration_PART_SRCS
|
2010-04-21 18:18:45 +00:00
|
|
|
auroraeconfig.ui
|
|
|
|
buttons.ui
|
|
|
|
config.ui
|
|
|
|
decoration.ui
|
|
|
|
)
|
2010-01-19 13:44:22 +00:00
|
|
|
|
2013-11-15 12:37:47 +00:00
|
|
|
add_library(kcm_kwindecoration MODULE ${kcm_kwindecoration_PART_SRCS})
|
2013-10-01 12:00:24 +00:00
|
|
|
target_link_libraries(kcm_kwindecoration
|
|
|
|
kdecorations
|
|
|
|
Qt5::DBus
|
|
|
|
Qt5::Quick
|
|
|
|
Qt5::UiTools
|
2013-12-11 20:41:47 +00:00
|
|
|
KF5::Completion
|
2014-03-18 06:41:30 +00:00
|
|
|
KF5::ConfigWidgets
|
2013-12-11 20:41:47 +00:00
|
|
|
KF5::I18n
|
|
|
|
KF5::NewStuff
|
2013-10-01 12:00:24 +00:00
|
|
|
)
|
2007-04-29 17:35:43 +00:00
|
|
|
install(TARGETS kcm_kwindecoration DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
|
|
|
|
|
|
########### install files ###############
|
|
|
|
|
|
|
|
install( FILES kwindecoration.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
|
2012-07-27 08:10:28 +00:00
|
|
|
install( FILES
|
|
|
|
qml/main.qml
|
|
|
|
qml/AuroraeDecoration.qml
|
|
|
|
qml/AuroraePreview.qml
|
|
|
|
qml/DecorationPreview.qml
|
|
|
|
DESTINATION ${DATA_INSTALL_DIR}/kwin/kcm_kwindecoration)
|