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.
118 lines
2.3 KiB
118 lines
2.3 KiB
#################################################
|
|
#
|
|
# (C) 2010 Serghei Amelian
|
|
# serghei (DOT) amelian (AT) gmail.com
|
|
#
|
|
# Improvements and feedback are welcome
|
|
#
|
|
# This file is released under GPL >= 2
|
|
#
|
|
#################################################
|
|
|
|
include_directories(
|
|
${TQT_INCLUDE_DIRS}
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_BINARY_DIR}
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_BINARY_DIR}/kdecore
|
|
${CMAKE_SOURCE_DIR}/dcop
|
|
${CMAKE_SOURCE_DIR}/kdecore
|
|
${CMAKE_SOURCE_DIR}/kdeui
|
|
${CMAKE_SOURCE_DIR}/kio
|
|
${CMAKE_SOURCE_DIR}/kio/kio
|
|
)
|
|
|
|
link_directories(
|
|
${TQT_LIBRARY_DIRS}
|
|
)
|
|
|
|
|
|
##### headers ###################################
|
|
|
|
install( FILES kdedmodule.h DESTINATION ${INCLUDE_INSTALL_DIR} )
|
|
|
|
|
|
##### other data ################################
|
|
|
|
install( FILES kdedmodule.desktop DESTINATION ${SERVICETYPES_INSTALL_DIR} )
|
|
install( FILES applications.menu DESTINATION ${XDG_MENU_INSTALL_DIR} )
|
|
install( FILES kded.upd DESTINATION ${KCONF_UPDATE_INSTALL_DIR} )
|
|
|
|
|
|
#### kded #######################################
|
|
|
|
set( target kded )
|
|
|
|
set( ${target}_SRCS
|
|
kded.cpp kdedmodule.cpp
|
|
)
|
|
|
|
# we must to export kdeinit_kded-shared because various
|
|
# modules need this library
|
|
tde_add_kdeinit_executable( ${target} AUTOMOC EXPORT
|
|
SOURCES ${${target}_SRCS}
|
|
LINK kio-shared
|
|
)
|
|
|
|
|
|
#### kbuildsycoca ###############################
|
|
|
|
set( target kbuildsycoca )
|
|
|
|
set( ${target}_SRCS
|
|
kbuildsycoca.cpp kbuildservicetypefactory.cpp
|
|
kbuildservicefactory.cpp kbuildservicegroupfactory.cpp
|
|
kbuildimageiofactory.cpp kbuildprotocolinfofactory.cpp
|
|
kctimefactory.cpp vfolder_menu.cpp
|
|
)
|
|
|
|
tde_add_kdeinit_executable( ${target} AUTOMOC
|
|
SOURCES ${${target}_SRCS}
|
|
LINK kio-shared
|
|
)
|
|
|
|
|
|
#### kdontchangethehostname #####################
|
|
|
|
set( target kdontchangethehostname )
|
|
|
|
set( ${target}_SRCS
|
|
khostname.cpp
|
|
)
|
|
|
|
tde_add_executable( ${target}
|
|
SOURCES ${${target}_SRCS}
|
|
LINK kdecore-shared
|
|
DESTINATION ${BIN_INSTALL_DIR}
|
|
)
|
|
|
|
|
|
#### kde-menu ###################################
|
|
|
|
set( target kde-menu )
|
|
|
|
set( ${target}_SRCS
|
|
kde-menu.cpp
|
|
)
|
|
|
|
tde_add_executable( ${target}
|
|
SOURCES ${${target}_SRCS}
|
|
LINK kio-shared
|
|
DESTINATION ${BIN_INSTALL_DIR}
|
|
)
|
|
|
|
|
|
#### kmimelist ##################################
|
|
|
|
set( target kmimelist )
|
|
|
|
set( ${target}_SRCS
|
|
kmimelist.cpp
|
|
)
|
|
|
|
tde_add_executable( ${target}
|
|
SOURCES ${${target}_SRCS}
|
|
LINK kio-shared
|
|
DESTINATION ${BIN_INSTALL_DIR}
|
|
)
|