summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorSlávek Banko <[email protected]>2019-02-15 16:52:22 +0100
committerSlávek Banko <[email protected]>2019-02-15 16:52:22 +0100
commit08930d4f0a050e5f1434de7c7a233837c10a339e (patch)
treebd4da81a4466483da5d0985e5f8ccbef456a89eb /ConfigureChecks.cmake
parent7636efc73b5691689b196741d2d081175248191b (diff)
downloadtdmtheme-08930d4f0a050e5f1434de7c7a233837c10a339e.tar.gz
tdmtheme-08930d4f0a050e5f1434de7c7a233837c10a339e.zip
Use common CMake tests.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake9
1 files changed, 3 insertions, 6 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index fbc879f..0b84648 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -16,14 +16,11 @@ tde_setup_architecture_flags( )
include(TestBigEndian)
test_big_endian(WORDS_BIGENDIAN)
+tde_setup_largefiles( )
+
##### 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")
+ tde_setup_gcc_visibility( )
endif( WITH_GCC_VISIBILITY )