diff options
author | gregory guy <[email protected]> | 2018-09-11 16:23:19 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2018-09-13 09:53:36 +0200 |
commit | 54e72759354e2f3bc4d83d7f6e83b3e91bd2e862 (patch) | |
tree | b3742925d3ac4bf37ed33e831536b3fbd05ec16b /ConfigureChecks.cmake | |
parent | 8edfe8cfc4dd94b7d669365d9195b44d308b3058 (diff) | |
download | tdeio-ftps-54e72759354e2f3bc4d83d7f6e83b3e91bd2e862.tar.gz tdeio-ftps-54e72759354e2f3bc4d83d7f6e83b3e91bd2e862.zip |
cmake conversion
Signed-off-by: gregory guy <[email protected]>
(cherry picked from commit 6e5f56beeb4b71f36cc2f50c8d38355d3915db87)
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake new file mode 100644 index 0000000..0c8966b --- /dev/null +++ b/ConfigureChecks.cmake @@ -0,0 +1,36 @@ +########################################### +# # +# 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 ) + + +#### check for headers + +check_include_file( "sys/select.h" HAVE_SYS_SELECT_H ) +check_include_file( "sys/time.h" HAVE_SYS_TIME_H ) +check_include_file( "time.h" TIME_WITH_SYS_TIME ) |