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.
tdebase/konqueror/sidebar/trees/history_module/CMakeLists.txt

61 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(
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_SOURCE_DIR}/konqueror/sidebar
${CMAKE_SOURCE_DIR}/konqueror/sidebar/trees
${CMAKE_SOURCE_DIR}/libkonq
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TDE_LIBRARY_DIRS}
${TQT_LIBRARY_DIRS}
)
##### other data ################################
install( FILES kcmhistory.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} )
##### konq_sidebartree_history (module) #########
set( target konq_sidebartree_history )
set( ${target}_SRCS
history_module.cpp history_item.cpp
history_settings.cpp history_settings.skel
)
tde_add_kpart( ${target} AUTOMOC
SOURCES ${${target}_SRCS}
LINK konq_sidebar_tree-static
DESTINATION ${PLUGIN_INSTALL_DIR}
)
##### kcm_history (module) ######################
set( target kcm_history )
set( ${target}_SRCS
kcmhistory.cpp history_dlg.ui history_settings.cpp
history_settings.skel
)
tde_add_kpart( ${target} AUTOMOC
SOURCES ${${target}_SRCS}
LINK konq-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)