You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.3 KiB
59 lines
1.3 KiB
#################################################
|
|
#
|
|
# (C) 2010-2011 Serghei Amelian
|
|
# serghei (DOT) amelian (AT) gmail.com
|
|
#
|
|
# Improvements and feedback are welcome
|
|
#
|
|
# This file is released under GPL >= 2
|
|
#
|
|
#################################################
|
|
|
|
include_directories(
|
|
${TDE_INCLUDE_DIR}
|
|
${TQT_INCLUDE_DIRS}
|
|
)
|
|
|
|
link_directories(
|
|
${TQT_LIBRARY_DIRS}
|
|
)
|
|
|
|
|
|
##### other data ################################
|
|
|
|
install( FILES
|
|
kwin.upd kwinsticky.upd kwiniconify.upd kwin3_plugin.upd
|
|
kwin_focus1.upd kwinupdatewindowsettings.upd
|
|
kwin_focus2.upd kwin_fsp_workarounds_1.upd
|
|
DESTINATION ${KCONF_UPDATE_INSTALL_DIR} )
|
|
|
|
install( PROGRAMS
|
|
pluginlibFix.pl kwin3_plugin.pl kwin_focus1.sh kwin_focus2.sh
|
|
DESTINATION ${KCONF_UPDATE_INSTALL_DIR} )
|
|
|
|
install( FILES
|
|
pop.wav
|
|
DESTINATION ${SOUND_INSTALL_DIR} )
|
|
|
|
install( FILES
|
|
fsp_workarounds_1.kwinrules
|
|
DESTINATION ${DATA_INSTALL_DIR}/kwin/default_rules )
|
|
|
|
|
|
##### kwin_update_window_settings (executable) ##
|
|
|
|
tde_add_executable( kwin_update_window_settings
|
|
SOURCES update_window_settings.cpp
|
|
LINK kdecore-shared
|
|
DESTINATION ${LIB_INSTALL_DIR}/kconf_update_bin
|
|
)
|
|
|
|
|
|
##### kwin_update_default_rules (executable) ####
|
|
|
|
tde_add_executable( kwin_update_default_rules
|
|
SOURCES update_default_rules.cpp
|
|
LINK kdecore-shared
|
|
DESTINATION ${LIB_INSTALL_DIR}/kconf_update_bin
|
|
)
|