diff options
author | Slávek Banko <[email protected]> | 2019-02-15 16:57:45 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-02-15 16:57:58 +0100 |
commit | ab2d45fdd8242ea5dd96c306454173553775a197 (patch) | |
tree | d8297df10f1c722b40411ddd0be9087399b675c8 /ConfigureChecks.cmake | |
parent | 9043c430d25ffef016925b6e7750688972e57884 (diff) | |
download | yakuake-ab2d45fdd8242ea5dd96c306454173553775a197.tar.gz yakuake-ab2d45fdd8242ea5dd96c306454173553775a197.zip |
Use common CMake tests.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 0a5e4a94eed7be2c14d48b664c6ec32cff00d8e6)
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 25 |
1 files changed, 3 insertions, 22 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 7733a2a..0b84648 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -16,30 +16,11 @@ tde_setup_architecture_flags( ) include(TestBigEndian) test_big_endian(WORDS_BIGENDIAN) +tde_setup_largefiles( ) + ##### check for gcc visibility support if( WITH_GCC_VISIBILITY ) - if( NOT UNIX ) - tde_message_fatal( "gcc 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") + tde_setup_gcc_visibility( ) 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 ) - |