diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2019-02-06 17:20:10 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-02-06 17:20:10 +0100 |
commit | 9f6b1118bc6eff9f22f719620753175fa4dc09f5 (patch) | |
tree | 2f9b141fa76723c948c891963fc261c6892983f1 | |
parent | 337dfa9173d767bfc4cf1a0b150ac86ba988050f (diff) | |
download | tdenetwork-9f6b1118bc6eff9f22f719620753175fa4dc09f5.tar.gz tdenetwork-9f6b1118bc6eff9f22f719620753175fa4dc09f5.zip |
Use common CMake tests.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r-- | CMakeLists.txt | 1 | ||||
-rw-r--r-- | ConfigureChecks.cmake | 13 |
2 files changed, 6 insertions, 8 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 01545424..337df7c9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,6 +24,7 @@ set( VERSION R14.1.0 ) include( FindPkgConfig ) include( CheckFunctionExists ) +include( CheckSymbolExists ) include( CheckIncludeFile ) include( CheckIncludeFileCXX ) include( CheckCXXSourceCompiles ) diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index c6ba0fb4..117d306b 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -10,25 +10,22 @@ ################################################# # 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( ) |