diff options
author | Slávek Banko <[email protected]> | 2019-02-06 17:20:10 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-02-06 17:20:28 +0100 |
commit | f73675cdcbe106151014f62b92c989d92e09c3f7 (patch) | |
tree | 7824b0f18d14142cae0f4b31a686209340a93293 /ConfigureChecks.cmake | |
parent | 14a1a35f6eac55175bfff80e1c173aba06fdba35 (diff) | |
download | tdenetwork-f73675cdcbe106151014f62b92c989d92e09c3f7.tar.gz tdenetwork-f73675cdcbe106151014f62b92c989d92e09c3f7.zip |
Use common CMake tests.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 9f6b1118bc6eff9f22f719620753175fa4dc09f5)
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 13 |
1 files changed, 5 insertions, 8 deletions
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( ) |