diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2019-02-05 12:46:06 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-02-05 12:46:19 +0100 |
commit | 692eb85c8849d9bfec011dd2c98ff79a4112c60e (patch) | |
tree | ff9f2f2d81053eb765cac41eeab48fb8293ac356 | |
parent | 5e59564fdd167c382fc3798ef74aef6e26cae87b (diff) | |
download | tdepim-692eb85c8849d9bfec011dd2c98ff79a4112c60e.tar.gz tdepim-692eb85c8849d9bfec011dd2c98ff79a4112c60e.zip |
Use common CMake tests.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit f7fe0b261ed7f78d88ce98c7a239b09ae572b427)
-rw-r--r-- | CMakeLists.txt | 1 | ||||
-rw-r--r-- | ConfigureChecks.cmake | 12 |
2 files changed, 5 insertions, 8 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index dc4b97bc4..8ff65e9c2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,6 +27,7 @@ include( CheckTypeSize ) include( CheckCSourceCompiles ) include( CheckCXXSourceCompiles ) include( CheckLibraryExists ) +include( CheckSymbolExists ) ##### include our cmake modules ################# diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 6789c4c0e..7fe40e2ce 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -14,17 +14,13 @@ tde_setup_architecture_flags( ) include(TestBigEndian) test_big_endian(WORDS_BIGENDIAN) +tde_setup_largefiles( ) + + ##### 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( ) |