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 1626
Collapse All | Expand All

(-)a/CMakeLists.txt (+9 lines)
Lines 35-40 include( TDESetupPaths ) Link Here
35
tde_setup_paths( )
35
tde_setup_paths( )
36
36
37
37
38
##### user requested modules ####################
39
40
option( BUILD_ALL "Build all" OFF )
41
option( BUILD_DOC "Build doc" ${BUILD_ALL} )
42
option( BUILD_TRANSLATIONS "Build translations" ${BUILD_ALL} )
43
44
38
##### configure checks ##########################
45
##### configure checks ##########################
39
46
40
include( ConfigureChecks.cmake )
47
include( ConfigureChecks.cmake )
Lines 54-59 set( CMAKE_MODULE_LINKER_FLAGS "-Wl,--no-undefined" ) Link Here
54
##### source directories ########################
61
##### source directories ########################
55
62
56
add_subdirectory( src )
63
add_subdirectory( src )
64
tde_conditional_add_subdirectory( BUILD_DOC doc )
65
tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po )
57
66
58
67
59
##### write configure files #####################
68
##### write configure files #####################
(-)a/ConfigureChecks.cmake (+8 lines)
Lines 57-62 if( NOT DBUS_TQT_FOUND ) Link Here
57
  tde_message_fatal( "dbus-tqt is required, but was not found on your system" )
57
  tde_message_fatal( "dbus-tqt is required, but was not found on your system" )
58
endif( )
58
endif( )
59
59
60
# check for msgfmt
61
if( BUILD_TRANSLATIONS AND NOT DEFINED MSGFMT_EXECUTABLE )
62
  find_program( MSGFMT_EXECUTABLE msgfmt )
63
  if( NOT MSGFMT_EXECUTABLE )
64
    tde_message_fatal( "msgfmt program is required, but was not found on your system" )
65
  endif( )
66
endif( )
67
60
68
61
# required stuff
69
# required stuff
62
find_package( TQt )
70
find_package( TQt )
(-)a/doc/CMakeLists.txt (+2 lines)
Line 0 Link Here
1
# Automaticaly genereted from doc/Makefile.am
2
tde_auto_add_subdirectories( )
(-)a/doc/cs/CMakeLists.txt (+5 lines)
Line 0 Link Here
1
# Automaticaly genereted from doc/cs/Makefile.am
2
tde_create_handbook(
3
  DESTINATION tdepowersave
4
  LANG cs
5
)
(-)a/doc/de/CMakeLists.txt (+5 lines)
Line 0 Link Here
1
# Automaticaly genereted from doc/de/Makefile.am
2
tde_create_handbook(
3
  DESTINATION tdepowersave
4
  LANG de
5
)
(-)a/doc/en/CMakeLists.txt (+2 lines)
Line 0 Link Here
1
# Automaticaly genereted from doc/en/Makefile.am
2
tde_create_handbook( DESTINATION tdepowersave  )
(-)a/doc/fi/CMakeLists.txt (+5 lines)
Line 0 Link Here
1
# Automaticaly genereted from doc/fi/Makefile.am
2
tde_create_handbook(
3
  DESTINATION tdepowersave
4
  LANG fi
5
)
(-)a/doc/hu/CMakeLists.txt (+5 lines)
Line 0 Link Here
1
# Automaticaly genereted from doc/hu/Makefile.am
2
tde_create_handbook(
3
  DESTINATION tdepowersave
4
  LANG hu
5
)
(-)a/doc/nb/CMakeLists.txt (+5 lines)
Line 0 Link Here
1
# Automaticaly genereted from doc/nb/Makefile.am
2
tde_create_handbook(
3
  DESTINATION tdepowersave
4
  LANG nb
5
)
(-)a/po/CMakeLists.txt (+12 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2013 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 auto OUTPUT_NAME tdepowersave )

Return to bug 1626