By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1365
Collapse All | Expand All

(-)a/CMakeLists.txt (+84 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
cmake_minimum_required( VERSION 2.8 )
13
14
15
##### general package setup #####################
16
17
project( konversation )
18
19
20
##### include essential cmake modules ###########
21
22
include( FindPkgConfig )
23
include( CheckIncludeFile )
24
include( CheckLibraryExists )
25
# @Add othere required cmake modules here@
26
#
27
# EXAMPLE:
28
# include( CheckTypeSize )
29
# include( CheckCSourceCompiles )
30
include( CheckCXXSourceCompiles )
31
32
33
##### include our cmake modules #################
34
35
set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
36
include( TDEMacros )
37
38
39
##### setup install paths #######################
40
41
include( TDESetupPaths )
42
tde_setup_paths( )
43
44
45
##### optional stuff ############################
46
47
option( WITH_XSCREENSAVER "Enable xscreensaver support" ${WITH_ALL_OPTIONS} )
48
# set WITH_XSCREENSAVER to use XScreensaver for auto-away feature
49
50
51
##### user requested modules ####################
52
53
option( BUILD_ALL "Build all" OFF )
54
option( BUILD_KONVERSATION "Build konversation" ${BUILD_ALL} )
55
option( BUILD_DOC "Build documentation" ${BUILD_ALL} )
56
option( BUILD_TRANSLATIONS "Build translations" ${BUILD_ALL} )
57
58
59
##### configure checks ##########################
60
61
include( ConfigureChecks.cmake )
62
63
64
###### global compiler settings #################
65
66
add_definitions(
67
  -DHAVE_CONFIG_H
68
)
69
70
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TQT_CXX_FLAGS}" )
71
set( CMAKE_SHARED_LINKER_FLAGS "-Wl,--no-undefined" )
72
set( CMAKE_MODULE_LINKER_FLAGS "-Wl,--no-undefined" )
73
74
75
##### konversation directories ##################
76
77
tde_conditional_add_subdirectory( BUILD_KONVERSATION konversation )
78
tde_conditional_add_subdirectory( BUILD_DOC doc )
79
tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po )
80
81
82
##### write configure files #####################
83
84
configure_file( config.h.cmake config.h @ONLY )
(-)a/ConfigureChecks.cmake (+53 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
##### check for gcc visibility support #########
13
# FIXME
14
# This should check for [T]Qt3 visibility support
15
16
if( WITH_GCC_VISIBILITY )
17
  if( NOT UNIX )
18
    tde_message_fatal(FATAL_ERROR "\ngcc visibility support was requested, but your system is not *NIX" )
19
  endif( NOT UNIX )
20
  set( __KDE_HAVE_GCC_VISIBILITY 1 )
21
  set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fvisibility=hidden -fvisibility-inlines-hidden")
22
  set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility=hidden -fvisibility-inlines-hidden")
23
endif( WITH_GCC_VISIBILITY )
24
25
26
tde_setup_architecture_flags( )
27
28
# XScreenSaver
29
if( BUILD_KONVERSATION AND WITH_XSCREENSAVER )
30
  pkg_search_module( XSCREENSAVER xscrnsaver )
31
  if( XSCREENSAVER_FOUND )
32
    set( HAVE_XSCREENSAVER 1 )
33
  else( XSCREENSAVER_FOUND )
34
    tde_message_fatal( "xscreensaver is requested, but was not found on your system" )
35
  endif( )
36
endif( BUILD_KONVERSATION AND WITH_XSCREENSAVER )
37
38
# gettext
39
if( BUILD_TRANSLATIONS )
40
  include( FindGettext )
41
  if( GETTEXT_FOUND )
42
    set( MSGFMT_EXECUTABLE ${GETTEXT_MSGFMT_EXECUTABLE} 
43
      CACHE FILEPATH "path to msgfmt executable" )
44
  endif( GETTEXT_FOUND )
45
  
46
  if( NOT MSGFMT_EXECUTABLE )
47
    tde_message_fatal( "msgfmt is required but was not found on your system." )
48
  endif( NOT MSGFMT_EXECUTABLE )
49
endif( BUILD_TRANSLATIONS )
50
51
# required stuff
52
find_package( TQt )
53
find_package( TDE )
(-)a/admin (-1 / +1 lines)
Line 1 Link Here
1
Subproject commit 24a4b8adb3917095752bd4bee8674006e97e9141
1
Subproject commit dcb06c93597c65cebdfeb257588aaaa8b7c62ffd
(-)a/cmake (-1 / +1 lines)
Line 1 Link Here
1
Subproject commit 0953d90e24d84a91d72f741f3f8ea5791d84f41b
1
Subproject commit 43ef41ffd6d6e6505185d7fb09d2bed096fcb483
(-)a/config.h.cmake (+9 lines)
Line 0 Link Here
1
#cmakedefine VERSION "@VERSION@"
2
3
#cmakedefine HAVE_XSCREENSAVER
4
5
// FIXME: add KONVI_VERSION define
6
7
// Sane configuration options for modern KDE
8
#define USE_KNOTIFY
9
#define USE_INFOLIST
(-)a/doc/CMakeLists.txt (+12 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_auto_add_subdirectories( )
(-)a/doc/da/CMakeLists.txt (+17 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
13
tde_create_handbook(
14
  DESTINATION konversation
15
  LANG da
16
)
17
(-)a/doc/es/CMakeLists.txt (+10 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
(-)a/doc/et/CMakeLists.txt (+17 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
13
tde_create_handbook(
14
  DESTINATION konversation
15
  LANG et
16
)
17
(-)a/doc/it/CMakeLists.txt (+17 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
13
tde_create_handbook(
14
  DESTINATION konversation
15
  LANG it
16
)
17
(-)a/doc/konversation/CMakeLists.txt (+14 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
13
tde_create_handbook( DESTINATION konversation  )
14
(-)a/doc/pt/CMakeLists.txt (+17 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
13
tde_create_handbook(
14
  DESTINATION konversation
15
  LANG pt
16
)
17
(-)a/doc/ru/CMakeLists.txt (+17 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
13
tde_create_handbook(
14
  DESTINATION konversation
15
  LANG ru
16
)
17
(-)a/doc/sv/CMakeLists.txt (+17 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
13
tde_create_handbook(
14
  DESTINATION konversation
15
  LANG sv
16
)
17
(-)a/konversation/CMakeLists.txt (+14 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
add_subdirectory( src )
13
add_subdirectory( images )
14
add_subdirectory( scripts )
(-)a/konversation/images/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
add_subdirectory( icons )
13
add_subdirectory( nickicons )
(-)a/konversation/images/icons/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_install_icons( )
13
(-)a/konversation/images/nickicons/CMakeLists.txt (+18 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
add_subdirectory( alternative )
13
add_subdirectory( christmas )
14
add_subdirectory( classic )
15
add_subdirectory( default )
16
add_subdirectory( smiling )
17
add_subdirectory( square )
18
add_subdirectory( oxygen )
(-)a/konversation/images/nickicons/alternative/CMakeLists.txt (+18 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
install( FILES irc_admin.png irc_away.png
13
  irc_halfop.png irc_normal.png irc_op.png
14
  irc_owner.png irc_voice.png index.desktop
15
  DESTINATION
16
    ${DATA_INSTALL_DIR}/konversation/themes/alternative
17
)
18
(-)a/konversation/images/nickicons/christmas/CMakeLists.txt (+18 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
install( FILES irc_admin.png irc_away.png
13
  irc_halfop.png irc_normal.png irc_op.png
14
  irc_owner.png irc_voice.png index.desktop
15
  DESTINATION
16
    ${DATA_INSTALL_DIR}/konversation/themes/christmas
17
)
18
(-)a/konversation/images/nickicons/classic/CMakeLists.txt (+18 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
install( FILES irc_admin.png irc_away.png
13
  irc_halfop.png irc_normal.png irc_op.png
14
  irc_owner.png irc_voice.png index.desktop
15
  DESTINATION
16
    ${DATA_INSTALL_DIR}/konversation/themes/classic
17
)
18
(-)a/konversation/images/nickicons/default/CMakeLists.txt (+18 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
install( FILES irc_admin.png irc_away.png
13
  irc_halfop.png irc_normal.png irc_op.png
14
  irc_owner.png irc_voice.png index.desktop
15
  DESTINATION
16
    ${DATA_INSTALL_DIR}/konversation/themes/default
17
)
18
(-)a/konversation/images/nickicons/oxygen/CMakeLists.txt (+18 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
install( FILES irc_admin.png irc_away.png
13
  irc_halfop.png irc_normal.png irc_op.png
14
  irc_owner.png irc_voice.png index.desktop
15
  DESTINATION
16
    ${DATA_INSTALL_DIR}/konversation/themes/oxygen
17
)
18
(-)a/konversation/images/nickicons/smiling/CMakeLists.txt (+18 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
install( FILES irc_admin.png irc_away.png
13
  irc_halfop.png irc_normal.png irc_op.png
14
  irc_owner.png irc_voice.png index.desktop
15
  DESTINATION
16
    ${DATA_INSTALL_DIR}/konversation/themes/smiling
17
)
18
(-)a/konversation/images/nickicons/square/CMakeLists.txt (+18 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
install( FILES irc_admin.png irc_away.png
13
  irc_halfop.png irc_normal.png irc_op.png
14
  irc_owner.png irc_voice.png index.desktop
15
  DESTINATION
16
    ${DATA_INSTALL_DIR}/konversation/themes/square
17
)
18
(-)a/konversation/scripts/CMakeLists.txt (+16 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
install( FILES fortunes.dat
13
  DESTINATION
14
    ${DATA_INSTALL_DIR}/konversation/scripts
15
)
16
(-)a/konversation/src/CMakeLists.txt (+113 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
add_subdirectory( config )
13
add_subdirectory( linkaddressbook )
14
add_subdirectory( blowfish )
15
16
include_directories(
17
  ${CMAKE_BINARY_DIR}
18
  ${CMAKE_CURRENT_BINARY_DIR}
19
  ${CMAKE_CURRENT_BINARY_DIR}/config
20
  ${CMAKE_CURRENT_SOURCE_DIR}
21
  ${CMAKE_CURRENT_SOURCE_DIR}/config
22
  ${CMAKE_CURRENT_SOURCE_DIR}/linkaddressbook
23
  ${CMAKE_CURRENT_SOURCE_DIR}/blowfish
24
  ${TDE_INCLUDE_DIR}
25
  ${TQT_INCLUDE_DIRS}
26
)
27
28
link_directories(
29
  ${TQT_LIBRARY_DIRS}
30
)
31
32
33
##### konversation (executable) #################
34
35
tde_add_executable( konversation AUTOMOC
36
  SOURCES konviface.skel konviconfigdialog.cpp konversationstatusbar.cpp
37
    konvisettingsdialog.cpp viewcontainer.cpp viewtree.cpp viewtreeitem.cpp
38
    konversationmainwindow.cpp valuelistviewitem.cpp urlcatcher.cpp
39
    scriptlauncher.cpp rawlog.cpp konvdcop.cpp channellistpanel.cpp
40
    konsolepanel.cpp identity.cpp statuspanel.cpp dccrecipientdialog.cpp
41
    topiccombobox.cpp nicksonline.cpp dcctransferpanel.cpp
42
    dcctransferpanelitem.cpp highlight.cpp highlightviewitem.cpp modebutton.cpp
43
    ignore_preferencesui.ui ignore_preferences.cpp ignore.cpp nicklistview.cpp
44
    ircinput.cpp channeloptionsui.ui channeloptionsdialog.cpp
45
    ignorelistviewitem.cpp images.cpp quickbutton.cpp chatwindow.cpp
46
    outputfilter.cpp logfilereader.cpp query.cpp konversationapplication.cpp
47
    nick.cpp inputfilter.cpp channel.cpp ircview.cpp server.cpp main.cpp
48
    dcc_preferencesui.ui log_preferences.ui tabs_preferencesui.ui
49
    tabs_preferences.cpp chatwindowappearance_preferences.ui
50
    irccolorchooserui.ui colorsappearance_preferences.ui irccolorchooser.cpp
51
    channellistviewitem.cpp osd.cpp trayicon.cpp dccchat.cpp multilineedit.cpp
52
    nickinfo.cpp dccresumedialog.cpp konversationsound.cpp
53
    quickconnectdialog.cpp serverlistdialog.cpp dcctransfersend.cpp
54
    dcctransferrecv.cpp channelnick.cpp insertchardialog.cpp irccharsets.cpp
55
    editnotifydialog.cpp common.cpp serverison.cpp sslsocket.cpp
56
    servergroupsettings.cpp serversettings.cpp servergroupdialog.cpp
57
    ssllabel.cpp serverdialog.cpp channeldialog.cpp identitydialog.cpp
58
    topiclabel.cpp notificationhandler.cpp joinchannelui.ui
59
    joinchanneldialog.cpp emoticon.cpp chatwindowbehaviour_preferences.ui
60
    alias_preferencesui.ui osd_preferencesui.ui theme_preferencesui.ui
61
    highlight_preferencesui.ui warnings_preferencesui.ui
62
    warnings_preferences.cpp quickbuttons_preferencesui.ui
63
    watchednicknames_preferencesui.ui generalbehavior_preferences.ui
64
    connectionbehavior_preferences.ui fontappearance_preferences.ui
65
    nicklistbehavior_preferencesui.ui konvibookmarkhandler.cpp
66
    konvibookmarkmenu.cpp ircviewbox.cpp searchbar.cpp osd_preferences.cpp
67
    theme_preferences.cpp dcc_preferences.cpp alias_preferences.cpp
68
    highlight_preferences.cpp watchednicknames_preferences.cpp
69
    quickbuttons_preferences.cpp nicklistbehavior_preferences.cpp
70
    tabnotifications_preferences.ui multilinetextedit.cpp serverlistview.cpp
71
    nicksonlineitem.cpp searchbarbase.ui autoreplace_preferencesui.ui
72
    autoreplace_preferences.cpp servergroupdialogui.ui dcctransfer.cpp
73
    dcctransfermanager.cpp dcctransferdetailedinfopanelui.ui
74
    dcctransferdetailedinfopanel.cpp dcccommon.cpp queuetunerbase.ui
75
    queuetuner.cpp ircqueue.cpp connectionsettings.cpp connectionmanager.cpp
76
    awaymanager.cpp
77
  LINK linkaddressbookui-static konversationconfig-static blowfish-static 
78
    kio-shared kabc-shared kimproxy-shared ${XSCREENSAVER_LIBRARIES}
79
  DESTINATION ${BIN_INSTALL_DIR}
80
)
81
82
83
##### other data ################################
84
85
install( FILES konversationui.rc eventsrc
86
  DESTINATION ${DATA_INSTALL_DIR}/konversation
87
)
88
89
install( FILES konversation-0.19-colors.pl 
90
    konversation-0.19-sortorder.pl 
91
    konversation-0.19-appearance.pl 
92
    konversation-0.19-tabplacement.pl 
93
    konversation-0.19-custombrowser.pl 
94
    konversation-0.19-colorcodes.pl 
95
    konversation-0.19-notifylists.pl 
96
    konversation-0.20-quickbuttons.pl 
97
    konversation-0.20-customfonts.pl
98
  PERMISSIONS WORLD_EXECUTE
99
  DESTINATION ${KCONF_UPDATE_INSTALL_DIR}
100
)
101
102
install( FILES konversation.desktop
103
  DESTINATION ${XDG_APPS_INSTALL_DIR}
104
)
105
106
install( FILES konvirc.protocol konvirc6.protocol
107
  DESTINATION ${SERVICES_INSTALL_DIR}
108
)
109
110
install( FILES konversation.upd
111
  DESTINATION ${KCONF_UPDATE_INSTALL_DIR}
112
)
113
(-)a/konversation/src/blowfish/CMakeLists.txt (+33 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
include_directories(
13
  ${CMAKE_BINARY_DIR}
14
  ${CMAKE_CURRENT_BINARY_DIR}
15
  ${CMAKE_CURRENT_SOURCE_DIR}
16
  ${CMAKE_SOURCE_DIR}/konversation/src
17
  ${TDE_INCLUDE_DIR}
18
  ${TQT_INCLUDE_DIRS}
19
)
20
21
link_directories(
22
  ${TQT_LIBRARY_DIRS}
23
)
24
25
26
##### blowfish (static) #########################
27
28
tde_add_library( blowfish STATIC_PIC AUTOMOC
29
  SOURCES b64stuff.cpp BlowfishCbc.cpp
30
    blowfish.cpp mc_blowfish.cpp newblowfish.cpp
31
    oldblowfish.cpp
32
)
33
(-)a/konversation/src/config/CMakeLists.txt (+38 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
include_directories(
13
  ${CMAKE_BINARY_DIR}
14
  ${CMAKE_SOURCE_DIR}/konversation/src
15
  ${CMAKE_CURRENT_BINARY_DIR}
16
  ${CMAKE_CURRENT_SOURCE_DIR}
17
  ${TDE_INCLUDE_DIR}
18
  ${TQT_INCLUDE_DIRS}
19
)
20
21
link_directories(
22
  ${TQT_LIBRARY_DIRS}
23
)
24
25
26
##### konversationconfig (static) ###############
27
28
tde_add_library( konversationconfig STATIC_PIC AUTOMOC
29
  SOURCES preferences_base.kcfgc preferences.cpp
30
)
31
32
33
##### other data ################################
34
35
install( FILES konversation.kcfg
36
  DESTINATION ${KCFG_INSTALL_DIR}
37
)
38
(-)a/konversation/src/konviconfigdialog.cpp (+1 lines)
Lines 282-284 void KonviConfigDialog::updateWidgetsDefault() Link Here
282
{
282
{
283
}
283
}
284
284
285
#include "konviconfigdialog.moc"
(-)a/konversation/src/linkaddressbook/CMakeLists.txt (+37 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
include_directories(
13
  ${CMAKE_BINARY_DIR}
14
  ${CMAKE_CURRENT_BINARY_DIR}
15
  ${CMAKE_CURRENT_SOURCE_DIR}
16
  ${CMAKE_SOURCE_DIR}/konversation/src
17
  ${CMAKE_SOURCE_DIR}/konversation/src/config
18
  ${CMAKE_BINARY_DIR}/konversation/src/config
19
  ${TDE_INCLUDE_DIR}
20
  ${TQT_INCLUDE_DIRS}
21
)
22
23
link_directories(
24
  ${TQT_LIBRARY_DIRS}
25
)
26
27
28
##### linkaddressbookui (static) ################
29
30
tde_add_library( linkaddressbookui STATIC_PIC AUTOMOC
31
  SOURCES linkaddressbookui_base.ui
32
    linkaddressbookui.cpp addressbook_base.cpp
33
    addressbook.cpp nicklisttooltip.cpp
34
    nicksonlinetooltip.cpp kimiface.skel
35
    addresseeitem.cpp
36
)
37
(-)a/po/CMakeLists.txt (+12 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_auto_add_subdirectories( )
(-)a/po/ar/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG ar )
13
(-)a/po/bg/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG bg )
13
(-)a/po/ca/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG ca )
13
(-)a/po/da/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG da )
13
(-)a/po/de/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG de )
13
(-)a/po/el/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG el )
13
(-)a/po/en_GB/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG en_GB )
13
(-)a/po/es/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG es )
13
(-)a/po/et/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG et )
13
(-)a/po/fi/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG fi )
13
(-)a/po/fr/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG fr )
13
(-)a/po/gl/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG gl )
13
(-)a/po/he/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG he )
13
(-)a/po/hu/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG hu )
13
(-)a/po/it/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG it )
13
(-)a/po/ja/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG ja )
13
(-)a/po/ka/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG ka )
13
(-)a/po/ko/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG ko )
13
(-)a/po/pa/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG pa )
13
(-)a/po/pt/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG pt )
13
(-)a/po/ru/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG ru )
13
(-)a/po/sr/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG sr )
13
(-)a/po/sr@Latn/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG sr@Latn )
13
(-)a/po/sv/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG sv )
13
(-)a/po/tr/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG tr )
13
(-)a/po/zh_CN/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG zh_CN )
13
(-)a/po/zh_TW/CMakeLists.txt (+13 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2012 Golubev Alexander
4
#  fatzer2 (AT) gmail.com
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
tde_create_translation( LANG zh_TW )
13

Return to bug 1365