summaryrefslogtreecommitdiffstats
path: root/tdeioslave/iso/CMakeLists.txt
blob: 79c795cebc3bac3482973dd477d31dc3ae6d6f73 (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
#################################################
#
#  (C) 2010 Serghei Amelian
#  serghei (DOT) amelian (AT) gmail.com
#
#  Improvements and feedback are welcome
#
#  This file is released under GPL >= 2
#
#################################################

add_subdirectory( libisofs )


include_directories(
  ${TQT_INCLUDE_DIRS}
  ${CMAKE_BINARY_DIR}
  ${CMAKE_CURRENT_SOURCE_DIR}
  ${CMAKE_BINARY_DIR}/tdecore
  ${CMAKE_SOURCE_DIR}/dcop
  ${CMAKE_SOURCE_DIR}/tdecore
  ${CMAKE_SOURCE_DIR}/tdeio
  ${CMAKE_SOURCE_DIR}/tdeio/tdeio
)

link_directories(
  ${TQT_LIBRARY_DIRS}
)


##### other data ################################

install( FILES iso.protocol DESTINATION ${SERVICES_INSTALL_DIR} )
install( FILES isoservice.desktop DESTINATION ${DATA_INSTALL_DIR}/konqueror/servicemenus )
install( FILES tdeio_isorc DESTINATION ${CONFIG_INSTALL_DIR} )
install( FILES tdeio_iso.desktop DESTINATION ${APPS_INSTALL_DIR} )


##### tdeio_iso ###################################

set( target tdeio_iso )

set( ${target}_SRCS
  kisodirectory.cpp kisofile.cpp qfilehack.cpp
  kiso.cpp iso.cpp
)

tde_add_kpart( ${target} AUTOMOC
  SOURCES ${${target}_SRCS}
  LINK isofs-static tdeio-shared
  DESTINATION ${PLUGIN_INSTALL_DIR}
)

##### tdeiso_info #################################

set( target tdeiso_info )

set( ${target}_SRCS
  kisodirectory.cpp kisofile.cpp qfilehack.cpp
  kiso.cpp tdeiso_info.cpp
)

tde_add_executable( ${target} AUTOMOC
  SOURCES ${${target}_SRCS}
  LINK isofs-static tdeio-shared
  DESTINATION ${BIN_INSTALL_DIR}
)