blob: 9308ff64d85888fc75dd84a2383d72ae1b8e6b8b (
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
77
78
|
#################################################
#
# (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_CURRENT_SOURCE_DIR}
${CMAKE_BINARY_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
)
##### other data ################################
install( FILES x-konsole.desktop DESTINATION ${MIME_INSTALL_DIR}/application )
##### libkonsolepart (module) ###################
set( target libkonsolepart )
set( ${target}_SRCS
TEPty.cpp BlockArray.cpp konsole_part.cpp schema.cpp
session.cpp zmodem_dialog.cpp TEWidget.cpp TEmuVt102.cpp
TEScreen.cpp konsole_wcwidth.cpp TEmulation.cpp
TEHistory.cpp keytrans.cpp konsoleiface.skel sessioniface.skel
)
tde_add_kpart( ${target} AUTOMOC
SOURCES ${${target}_SRCS}
LINK kparts-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
##### kded_kwrited (module) #####################
set( target kded_kwrited )
set( ${target}_SRCS
kwrited.cpp TEPty.cpp kwrited.skel
)
tde_add_kpart( ${target} AUTOMOC
SOURCES ${${target}_SRCS}
LINK kdeinit_kded-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
##### konsole (kdeinit) #########################
set( target konsole )
set( ${target}_SRCS
TEPty.cpp BlockArray.cpp main.cpp konsole.cpp
schema.cpp session.cpp TEWidget.cpp TEmuVt102.cpp
TEScreen.cpp TEmulation.cpp TEHistory.cpp keytrans.cpp
konsoleiface.skel sessioniface.skel konsole_wcwidth.cpp
konsolebookmarkhandler.cpp konsolebookmarkmenu.cpp
zmodem_dialog.cpp printsettings.cpp
)
tde_add_kdeinit_executable( ${target} AUTOMOC
SOURCES ${${target}_SRCS}
LINK kdeprint-shared kio-shared ${XRENDER_LIBRARIES} dl
)
|