You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.8 KiB
76 lines
1.8 KiB
#################################################
|
|
#
|
|
# (C) 2013 Alexander Golubev (Fat-Zer)
|
|
# fatzer2 (AT) gmail.com
|
|
#
|
|
# Improvements and feedback are welcome
|
|
#
|
|
# This file is released under GPL >= 2
|
|
#
|
|
#################################################
|
|
|
|
cmake_minimum_required( VERSION 2.8 )
|
|
|
|
|
|
##### general package setup #####################
|
|
|
|
project( k3b-i18n )
|
|
set( VERSION R14.0.5 )
|
|
|
|
|
|
##### include essential cmake modules ###########
|
|
|
|
include( FindPkgConfig ) # required for find_package( TDE )
|
|
|
|
|
|
##### include our cmake modules #################
|
|
|
|
set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
|
|
include( TDEMacros )
|
|
|
|
|
|
##### find required stuff #######################
|
|
|
|
include( FindGettext )
|
|
if( GETTEXT_FOUND )
|
|
set( DEFAULT_MSGFMT_EXECUTABLE ${GETTEXT_MSGFMT_EXECUTABLE} )
|
|
else( GETTEXE_FOUND )
|
|
find_program( DEFAULT_MSGFMT_EXECUTABLE msgfmt )
|
|
endif( GETTEXT_FOUND )
|
|
|
|
set( MSGFMT_EXECUTABLE ${DEFAULT_MSGFMT_EXECUTABLE} CACHE FILEPATH
|
|
"path to msgfmt executable" )
|
|
|
|
if( NOT MSGFMT_EXECUTABLE )
|
|
tde_message_fatal( "msgfmt is required but was not found on your system or defined" )
|
|
endif( NOT MSGFMT_EXECUTABLE )
|
|
|
|
find_package( TDE )
|
|
|
|
|
|
##### setup install paths #######################
|
|
|
|
include( TDESetupPaths )
|
|
tde_setup_paths( )
|
|
|
|
option( BUILD_DOC "Build documentation" ON )
|
|
option( BUILD_MESSAGES "Build message and GUI translation" ON )
|
|
|
|
|
|
###### build translations for all languages #####
|
|
|
|
if( BUILD_MESSAGES )
|
|
file( GLOB_RECURSE po_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} */messages/*.po )
|
|
|
|
foreach( _po ${po_files} )
|
|
string( REPLACE "/" ";" _path "${_po}" )
|
|
list( GET _path 0 _lang )
|
|
tde_create_translation( FILES ${_po} LANG ${_lang} )
|
|
endforeach( )
|
|
endif( )
|
|
|
|
|
|
###### subdirectories ###########################
|
|
|
|
tde_auto_add_subdirectories( )
|