diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2019-02-10 20:01:15 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-02-10 20:01:29 +0100 |
commit | e7dd0ef2079327cf78ed571a05ad72bf7382b342 (patch) | |
tree | 4db9aa6e26039f7a3ade3059a5cac6ffd0514448 | |
parent | 17be17d75c6005b1ed99398b83286e0f446ce496 (diff) | |
download | kbfx-e7dd0ef2079327cf78ed571a05ad72bf7382b342.tar.gz kbfx-e7dd0ef2079327cf78ed571a05ad72bf7382b342.zip |
Use common CMake tests.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 8d7abfb0a24cc7626a21d83da3f5dc9c1afc1d94)
-rw-r--r-- | ConfigureChecks.cmake | 36 |
1 files changed, 16 insertions, 20 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index a6e0da4..7e13f24 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -9,27 +9,27 @@ # ################################################# + +# required stuff + +tde_setup_architecture_flags( ) + +include(TestBigEndian) +test_big_endian(WORDS_BIGENDIAN) + +tde_setup_largefiles( ) + +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") + tde_setup_gcc_visibility( ) endif( ) -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( ) - check_type_size( "int" SIZEOF_INT BUILTIN_TYPES_ONLY ) check_type_size( "long" SIZEOF_LONG BUILTIN_TYPES_ONLY ) @@ -50,10 +50,6 @@ ELSE (USE_STRIGI) MESSAGE(STATUS "Strigi support is: OFF!") ENDIF (USE_STRIGI) -# common required stuff -find_package( TQt ) -find_package( TDE ) - #### Find menudrake if needed ##################### @@ -64,4 +60,4 @@ IF (HAVE_MANDRAKE AND USE_MENUDRAKE) ELSE (HAVE_MANDRAKE AND USE_MENUDRAKE) SET(MANDRAKE "") MESSAGE(STATUS "Will use 'kmenuedit'!") -ENDIF (HAVE_MANDRAKE AND USE_MENUDRAKE)
\ No newline at end of file +ENDIF (HAVE_MANDRAKE AND USE_MENUDRAKE) |