diff options
author | Slávek Banko <[email protected]> | 2019-02-10 15:52:56 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-02-10 15:53:10 +0100 |
commit | c768fde6f773a1aa0edb272062d04b323065af64 (patch) | |
tree | 2f283f8c02ca644e37e035e1703492956d6904ed | |
parent | d6b62dc3d86727251255bedc3187fbe69a9d2b1e (diff) | |
download | abakus-c768fde6f773a1aa0edb272062d04b323065af64.tar.gz abakus-c768fde6f773a1aa0edb272062d04b323065af64.zip |
Use common CMake tests.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit e744eb988b8865334417ef85facba9c2b064d9cc)
-rw-r--r-- | ConfigureChecks.cmake | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 33307a6..10552ff 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -9,17 +9,24 @@ # ################################################# + +# 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( ) @@ -38,7 +45,3 @@ check_include_file( systems.h HAVE_SYSTEMS_H ) check_include_file( linux/inotify.h HAVE_INOTIFY ) check_function_exists( statvfs HAVE_STATVFS ) - -# common required stuff -find_package( TQt ) -find_package( TDE ) |