summaryrefslogtreecommitdiffstats
path: root/kio/kfile/CMakeLists.txt
blob: 3444fa0da6af974c5b184eadf45723e466adb020 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#################################################
#
#  (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}/tdecore
  ${CMAKE_SOURCE_DIR}
  ${CMAKE_SOURCE_DIR}/dcop
  ${CMAKE_SOURCE_DIR}/tdefx
  ${CMAKE_SOURCE_DIR}/tdecore
  ${CMAKE_SOURCE_DIR}/tdeui
  ${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 ${SERVICETYPES_INSTALL_DIR} )


##### 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}
)