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.
54 lines
1.6 KiB
54 lines
1.6 KiB
12 years ago
|
#################################################
|
||
|
#
|
||
|
# (C) 2012 Golubev Alexander
|
||
|
# fatzer2 (AT) gmail.com
|
||
|
#
|
||
|
# Improvements and feedback are welcome
|
||
|
#
|
||
|
# This file is released under GPL >= 2
|
||
|
#
|
||
|
#################################################
|
||
|
|
||
|
##### check for gcc visibility support #########
|
||
|
# FIXME
|
||
|
# This should check for [T]Qt3 visibility support
|
||
|
|
||
|
if( WITH_GCC_VISIBILITY )
|
||
|
if( NOT UNIX )
|
||
|
tde_message_fatal(FATAL_ERROR "\ngcc visibility support was requested, but your system is not *NIX" )
|
||
|
endif( NOT UNIX )
|
||
|
set( __KDE_HAVE_GCC_VISIBILITY 1 )
|
||
|
set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fvisibility=hidden -fvisibility-inlines-hidden")
|
||
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility=hidden -fvisibility-inlines-hidden")
|
||
|
endif( WITH_GCC_VISIBILITY )
|
||
|
|
||
|
|
||
|
tde_setup_architecture_flags( )
|
||
|
|
||
|
# XScreenSaver
|
||
|
if( BUILD_KONVERSATION AND WITH_XSCREENSAVER )
|
||
|
pkg_search_module( XSCREENSAVER xscrnsaver )
|
||
|
if( XSCREENSAVER_FOUND )
|
||
|
set( HAVE_XSCREENSAVER 1 )
|
||
|
else( XSCREENSAVER_FOUND )
|
||
|
tde_message_fatal( "xscreensaver is requested, but was not found on your system" )
|
||
|
endif( )
|
||
|
endif( BUILD_KONVERSATION AND WITH_XSCREENSAVER )
|
||
|
|
||
|
# 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 )
|
||
|
|
||
|
# required stuff
|
||
|
find_package( TQt )
|
||
|
find_package( TDE )
|