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/listview/CMakeLists.txt

59 lines
1.4 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}/libkonq
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TDE_LIBRARY_DIRS}
${TQT_LIBRARY_DIRS}
)
##### other data ################################
tde_create_translated_desktop(
SOURCE
konq_treeview.desktop konq_detailedlistview.desktop
konq_textview.desktop konq_infolistview.desktop
DESTINATION ${SERVICES_INSTALL_DIR}
PO_DIR konqueror-desktops
)
install( FILES
konq_treeview.rc konq_detailedlistview.rc
konq_textview.rc konq_infolistview.rc
DESTINATION ${DATA_INSTALL_DIR}/konqlistview )
install( FILES konq_listview.kcfg DESTINATION ${KCFG_INSTALL_DIR} )
##### konq_listview (module) ####################
set( target konq_listview )
set( ${target}_SRCS
konq_listview.cpp konq_listviewwidget.cpp konq_listviewitems.cpp
konq_treeviewwidget.cpp konq_treeviewitem.cpp konq_textviewwidget.cpp
konq_textviewitem.cpp konq_infolistviewwidget.cpp
konq_infolistviewitem.cpp konq_listviewsettings.kcfgc
)
tde_add_kpart( ${target} AUTOMOC
SOURCES ${${target}_SRCS}
LINK konq-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)