summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorgregory guy <[email protected]>2018-11-01 14:09:02 +0100
committerSlávek Banko <[email protected]>2018-11-04 04:21:20 +0100
commit0b2c4d9d78db599b2232cbdf79b8dc0eb1412182 (patch)
tree82a7b29fc842b198b87fe15d9fa3820c084730ec /ConfigureChecks.cmake
parentef642b4147395641732446151426119d3e0aa5fe (diff)
downloadksplash-engine-moodin-0b2c4d9d78db599b2232cbdf79b8dc0eb1412182.tar.gz
ksplash-engine-moodin-0b2c4d9d78db599b2232cbdf79b8dc0eb1412182.zip
conversion to the cmake building system
Signed-off-by: gregory guy <[email protected]> (cherry picked from commit ec807a6bae192e677cefa55c906b5c7bcecc2960)
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake29
1 files changed, 29 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
new file mode 100644
index 0000000..fbc879f
--- /dev/null
+++ b/ConfigureChecks.cmake
@@ -0,0 +1,29 @@
+###########################################
+# #
+# Improvements and feedback are welcome #
+# #
+# This file is released under GPL >= 3 #
+# #
+###########################################
+
+
+# required stuff
+find_package( TQt )
+find_package( TDE )
+
+tde_setup_architecture_flags( )
+
+include(TestBigEndian)
+test_big_endian(WORDS_BIGENDIAN)
+
+
+##### check for gcc visibility support
+
+if( WITH_GCC_VISIBILITY )
+ if( NOT UNIX )
+ tde_message_fatal( "gcc 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( WITH_GCC_VISIBILITY )