|
|
|
#################################################
|
|
|
|
#
|
|
|
|
# (C) 2019 Emanoil Kotsev
|
|
|
|
# deloptes (AT) gmail.com
|
|
|
|
#
|
|
|
|
# Improvements and feedback are welcome
|
|
|
|
#
|
|
|
|
# This file is released under GPL >= 2
|
|
|
|
#
|
|
|
|
#################################################
|
|
|
|
|
|
|
|
tde_setup_architecture_flags( )
|
|
|
|
|
|
|
|
include(TestBigEndian)
|
|
|
|
test_big_endian(WORDS_BIGENDIAN)
|
|
|
|
|
|
|
|
tde_setup_largefiles( )
|
|
|
|
|
|
|
|
|
|
|
|
##### check for gcc visibility support
|
|
|
|
|
|
|
|
if( WITH_GCC_VISIBILITY )
|
|
|
|
tde_setup_gcc_visibility( )
|
|
|
|
endif( WITH_GCC_VISIBILITY )
|
|
|
|
|
|
|
|
# check for dbus-1
|
|
|
|
pkg_search_module( DBUS dbus-1 )
|
|
|
|
if( NOT DBUS_FOUND )
|
|
|
|
tde_message_fatal( "dbus-1 is required, but was not found on your system" )
|
|
|
|
endif( )
|
|
|
|
|
|
|
|
|
|
|
|
# check for dbus-1-tqt
|
|
|
|
pkg_search_module( DBUS_TQT dbus-1-tqt )
|
|
|
|
if( NOT DBUS_TQT_FOUND )
|
|
|
|
tde_message_fatal( "dbus-1-tqt is required, but was not found on your system" )
|
|
|
|
endif( )
|
|
|
|
|
|
|
|
# check for msgfmt
|
|
|
|
if( BUILD_TRANSLATIONS AND NOT DEFINED MSGFMT_EXECUTABLE )
|
|
|
|
find_program( MSGFMT_EXECUTABLE msgfmt )
|
|
|
|
if( NOT MSGFMT_EXECUTABLE )
|
|
|
|
tde_message_fatal( "msgfmt program is required, but was not found on your system" )
|
|
|
|
endif( )
|
|
|
|
endif( )
|
|
|
|
|
|
|
|
# required stuff
|
|
|
|
find_package( TQt )
|
|
|
|
find_package( TDE )
|