blob: b708b42c875c151f8de4f929c037b913783f44a1 (
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
|
#################################################
#
# (C) 2010-2011 Serghei Amelian
# serghei (DOT) amelian (AT) gmail.com
#
# Improvements and feedback are welcome
#
# This file is released under GPL >= 2
#
#################################################
add_definitions( -DKDE_NO_COMPAT )
include_directories(
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
)
##### other data ################################
install( FILES
kopete-pluginloader.upd kopete-account-kconf_update.upd
kopete-pluginloader2.upd kopete-jabberproxytype-kconf_update.upd
kopete-jabberpriorityaddition-kconf_update.upd
kopete-nameTracking.upd
DESTINATION ${KCONF_UPDATE_INSTALL_DIR} )
install( PROGRAMS
kopete-pluginloader.pl kopete-jabberpriorityaddition-kconf_update.sh
kopete-pluginloader2.sh kopete-jabberproxytype-kconf_update.sh
kopete-account-0.10.pl kopete-account-kconf_update.sh
DESTINATION ${KCONF_UPDATE_INSTALL_DIR} )
##### kopete_account_kconf_update (executable) ##
tde_add_executable( kopete_account_kconf_update
SOURCES kopete-account-kconf_update.cpp
LINK ${TQT_LIBRARIES}
DESTINATION ${LIB_INSTALL_DIR}/kconf_update_bin
)
##### kopete_pluginloader2_kconf_update (executable)
tde_add_executable( kopete_pluginloader2_kconf_update
SOURCES kopete-pluginloader2.cpp
LINK ${TQT_LIBRARIES}
DESTINATION ${LIB_INSTALL_DIR}/kconf_update_bin
)
##### kopete_nameTracking_kconf_update (executable)
tde_add_executable( kopete_nameTracking_kconf_update
SOURCES kopete-nameTracking.cpp
LINK tdecore-shared
DESTINATION ${LIB_INSTALL_DIR}/kconf_update_bin
)
|