summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-10-22 20:10:08 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-10-22 20:10:08 -0500
commit3980650504eb0d5beed7433a0853615a066bb176 (patch)
treeb593fb33279ad1c03986d5581b24f75cb8369da3 /ConfigureChecks.cmake
parentdfa501c626914eed4738ae35777432aabf0d3be4 (diff)
downloadkgtk-qt3-3980650504eb0d5beed7433a0853615a066bb176.tar.gz
kgtk-qt3-3980650504eb0d5beed7433a0853615a066bb176.zip
Add cmake support for WITH_GCC_VISIBILITY.
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake14
1 files changed, 14 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index 905df2b..4eff805 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -9,6 +9,20 @@
#
#################################################
+##### 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( )
+
+
if( BUILD_TRANSLATIONS AND NOT DEFINED MSGFMT_EXECUTABLE )
find_program( MSGFMT_EXECUTABLE msgfmt )
if( NOT MSGFMT_EXECUTABLE )