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.
56 lines
1.2 KiB
56 lines
1.2 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(
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_BINARY_DIR}
|
|
${CMAKE_SOURCE_DIR}/libkonq
|
|
${TDE_INCLUDE_DIR}
|
|
${TQT_INCLUDE_DIRS}
|
|
)
|
|
|
|
link_directories(
|
|
${TQT_LIBRARY_DIRS}
|
|
)
|
|
|
|
##### other data ################################
|
|
|
|
tde_create_translated_desktop(
|
|
SOURCE
|
|
desktopbehavior.desktop desktop.desktop
|
|
desktoppath.desktop filebrowser.desktop
|
|
PO_DIR kcontrol-desktops
|
|
)
|
|
|
|
install( FILES
|
|
overlapping.png onlyone.png
|
|
DESTINATION ${DATA_INSTALL_DIR}/kcontrol/pics )
|
|
|
|
tde_create_translated_desktop(
|
|
SOURCE
|
|
filebehavior.desktop fileappearance.desktop
|
|
filepreviews.desktop
|
|
DESTINATION ${APPS_INSTALL_DIR}/.hidden
|
|
PO_DIR kcontrol-desktops
|
|
)
|
|
|
|
|
|
##### kcm_konq (module) #########################
|
|
|
|
tde_add_kpart( kcm_konq AUTOMOC
|
|
SOURCES
|
|
behaviour.cpp desktop.cpp desktopbehavior_impl.cpp
|
|
previews.cpp browser.cpp main.cpp rootopts.cpp
|
|
fontopts.cpp desktopbehavior.ui
|
|
LINK tdeio-shared tdeutils-shared
|
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
|
)
|