diff options
author | Alexander Golubev <[email protected]> | 2016-01-23 02:03:06 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2016-01-23 02:03:21 +0100 |
commit | 561f5a476064264d5044ad3b0d50d61b6e79b3c6 (patch) | |
tree | e9c530f27eb8b3e7391dfa1a528a4de55978bb63 /ConfigureChecks.cmake | |
parent | b82854c10b6ba3ffbbcb55257a5bfcb433934066 (diff) | |
download | filelight-561f5a476064264d5044ad3b0d50d61b6e79b3c6.tar.gz filelight-561f5a476064264d5044ad3b0d50d61b6e79b3c6.zip |
Initial-cmake-conversion
Signed-off-by: Alexander Golubev <[email protected]>
(cherry picked from commit 9ffcfe47affd396c395008e4715773228ab53f63)
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake new file mode 100644 index 0000000..6f8196f --- /dev/null +++ b/ConfigureChecks.cmake @@ -0,0 +1,48 @@ +################################################# +# +# (C) 2012 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +# required stuff +tde_setup_architecture_flags( ) +find_package( TQt ) +find_package( TDE ) + + +##### 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 ) + + +# 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 ) + + +# Check for mntent.h +check_include_file( "mntent.h" HAVE_MNTENT_H ) + |