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.
35 lines
798 B
35 lines
798 B
#################################################
|
|
#
|
|
# (C) 2010 Serghei Amelian
|
|
# serghei (DOT) amelian (AT) gmail.com
|
|
#
|
|
# Improvements and feedback are welcome
|
|
#
|
|
# This file is released under GPL >= 2
|
|
#
|
|
#################################################
|
|
|
|
# required stuff
|
|
tde_setup_architecture_flags( )
|
|
|
|
include(TestBigEndian)
|
|
test_big_endian(WORDS_BIGENDIAN)
|
|
|
|
find_package( TQt )
|
|
find_package( TDE )
|
|
|
|
|
|
##### gettext
|
|
|
|
if( BUILD_TRANSLATIONS )
|
|
include( FindGettext )
|
|
if( GETTEXT_FOUND )
|
|
set( MSGFMT_EXECUTABLE ${GETTEXT_MSGFMT_EXECUTABLE}
|
|
CACHE FILEPATH "path to msgfmt executable" )
|
|
endif( GETTEXT_FOUND )
|
|
|
|
if( NOT MSGFMT_EXECUTABLE )
|
|
tde_message_fatal( "msgfmt is required but was not found on your system." )
|
|
endif( NOT MSGFMT_EXECUTABLE )
|
|
endif( BUILD_TRANSLATIONS )
|