summaryrefslogtreecommitdiffstats
path: root/kio/kfile
diff options
context:
space:
mode:
authorsamelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-10-05 19:41:05 +0000
committersamelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-10-05 19:41:05 +0000
commit7ffba8afee76edba6433d97864119501731742e8 (patch)
tree38b5eb5bd019b77b33f7ad8d7de7ef7666ebe8b1 /kio/kfile
parent0db4822126702d04068c5761e63ed9684a08981b (diff)
downloadtdelibs-7ffba8afee76edba6433d97864119501731742e8.tar.gz
tdelibs-7ffba8afee76edba6433d97864119501731742e8.zip
[kdelibs] added initial cmake support
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1182854 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kio/kfile')
-rw-r--r--kio/kfile/CMakeLists.txt80
1 files changed, 80 insertions, 0 deletions
diff --git a/kio/kfile/CMakeLists.txt b/kio/kfile/CMakeLists.txt
new file mode 100644
index 000000000..b94d12ea0
--- /dev/null
+++ b/kio/kfile/CMakeLists.txt
@@ -0,0 +1,80 @@
+#################################################
+#
+# (C) 2010 Serghei Amelian
+# serghei (DOT) amelian (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+add_definitions(
+ ${TQT_CFLAGS_OTHER}
+)
+
+include_directories(
+ ${TQT_INCLUDE_DIRS}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_BINARY_DIR}/kdecore
+ ${CMAKE_SOURCE_DIR}
+ ${CMAKE_SOURCE_DIR}/dcop
+ ${CMAKE_SOURCE_DIR}/kdefx
+ ${CMAKE_SOURCE_DIR}/kdecore
+ ${CMAKE_SOURCE_DIR}/kdeui
+ ${CMAKE_SOURCE_DIR}/kio
+ ${CMAKE_SOURCE_DIR}/kio/kio
+ ${CMAKE_SOURCE_DIR}/kio/bookmarks
+ ${LIBART_INCLUDE_DIRS}
+)
+
+
+##### headers ###################################
+
+install( FILES
+ kfiledialog.h kencodingfiledialog.h
+ kdiroperator.h kfileview.h kfilefiltercombo.h
+ kfiledetailview.h kcombiview.h kdiskfreesp.h
+ kfileiconview.h krecentdocument.h
+ kurlrequester.h kfilepreview.h kfile.h
+ kurlcombobox.h kurlrequesterdlg.h kopenwith.h kpropsdlg.h
+ kicondialog.h kdirsize.h kpreviewwidgetbase.h kimagefilepreview.h kfilesharedlg.h
+ kfiletreeview.h kfiletreeviewitem.h kfiletreebranch.h
+ kdirselectdialog.h kurlbar.h kpropertiesdialog.h knotifydialog.h
+ kcustommenueditor.h ${CMAKE_CURRENT_BINARY_DIR}/knotifywidgetbase.h
+ DESTINATION ${INCLUDE_INSTALL_DIR} )
+
+
+##### other data ################################
+
+install( FILES
+ kpropsdlgplugin.desktop
+ DESTINATION ${SHARE_INSTALL_DIR}/servicetypes )
+
+
+##### kfile #####################################
+
+set( target kfile )
+
+set( ${target}_SRCS
+ kfilefiltercombo.cpp kfileview.cpp kfileiconview.cpp
+ krecentdocument.cpp kfiledialog.cpp kdiroperator.cpp
+ kfiledetailview.cpp kcombiview.cpp kurlrequester.cpp
+ kfilepreview.cpp kurlcombobox.cpp kurlrequesterdlg.cpp
+ kopenwith.cpp kpropertiesdialog.cpp kicondialog.cpp
+ kdirsize.cpp krecentdirs.cpp kdiskfreesp.cpp kimagefilepreview.cpp
+ kfilesharedlg.cpp kurlbar.cpp kmetaprops.cpp kpreviewprops.cpp
+ kfiletreeview.cpp kfiletreeviewitem.cpp kfiletreebranch.cpp
+ kdirselectdialog.cpp kfilebookmarkhandler.cpp kfilemetainfowidget.cpp
+ kcustommenueditor.cpp knotifywidgetbase.ui knotifydialog.cpp
+ kfilespeedbar.cpp kpreviewwidgetbase.cpp kfilemetapreview.cpp
+ kpropertiesdesktopbase.ui kpropertiesdesktopadvbase.ui
+ kpropertiesmimetypebase.ui kencodingfiledialog.cpp
+ kacleditwidget.cpp
+)
+
+tde_add_library( ${target} STATIC_PIC AUTOMOC
+ SOURCES ${${target}_SRCS}
+)