diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2019-01-17 01:48:40 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-01-28 20:12:01 +0100 |
commit | 83e4c4d56c1bda0a7b925c8dccb971d7a3a12362 (patch) | |
tree | b511e44b200955ac029e46318f1749467af31e1d /CMakeLists.txt | |
parent | 04e54344be1eac29c863205d2b9fa77e84f0cd70 (diff) | |
download | tdelibs-83e4c4d56c1bda0a7b925c8dccb971d7a3a12362.tar.gz tdelibs-83e4c4d56c1bda0a7b925c8dccb971d7a3a12362.zip |
Use common GCC visibility test.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index adf408e91..42aa50dea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1157,16 +1157,9 @@ endif ( WITH_KDE4_MENU_SUFFIX ) ##### check for gcc visibility support ######### -# FIXME -# This should check for [T]Qt3 visibility support if( WITH_GCC_VISIBILITY ) - if( NOT UNIX ) - message(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( ) |