diff options
author | Darrell Anderson <[email protected]> | 2012-10-22 20:09:06 -0500 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2012-10-22 20:09:06 -0500 |
commit | 1ef0dc650276201c356b1720fc22701e2f2b3cdb (patch) | |
tree | 1334f289fdeed2c8fbb47f57219ea70f95beaa45 | |
parent | 6cead3aea75806f3601d114cf48b2d7888897399 (diff) | |
download | gtk-qt-engine-1ef0dc650276201c356b1720fc22701e2f2b3cdb.tar.gz gtk-qt-engine-1ef0dc650276201c356b1720fc22701e2f2b3cdb.zip |
Add cmake support for WITH_GCC_VISIBILITY.
-rw-r--r-- | ConfigureChecks.cmake | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 3bc08a7..12e2eb1 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -1,3 +1,17 @@ +##### 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") +endif( ) + + # required stuff find_package( TQt ) find_package( TDE ) |