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

(-)trinity-tdepowersave-14.0.0~pre155+f6157088.ORI/CMakeLists.txt (+1 lines)
Lines 54-59 Link Here
54
##### source directories ########################
54
##### source directories ########################
55
55
56
add_subdirectory( src )
56
add_subdirectory( src )
57
tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po )
57
58
58
59
59
##### write configure files #####################
60
##### write configure files #####################
(-)trinity-tdepowersave-14.0.0~pre155+f6157088.ORI/ConfigureChecks.cmake (+8 lines)
Lines 57-62 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 )
(-)trinity-tdepowersave-14.0.0~pre155+f6157088.ORI/po/CMakeLists.txt (+17 lines)
Line 0 Link Here
1
#################################################
2
#
3
#  (C) 2013 Francois Andriot
4
#  francois.andriot (AT) free.fr
5
#
6
#  Improvements and feedback are welcome
7
#
8
#  This file is released under GPL >= 2
9
#
10
#################################################
11
12
file( GLOB po_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.po )
13
14
foreach( _po ${po_files} )
15
  get_filename_component( _lang ${_po} NAME_WE )
16
  tde_create_translation( FILES ${_po} LANG ${_lang} )
17
endforeach( )

Return to bug 1626