diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2019-02-06 15:24:30 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-02-06 15:24:30 +0100 |
commit | f87fd6d4e2edaadb65feaeb189e3af80c16693ad (patch) | |
tree | 168bf58acc5f3ff613730a056acf555cdfc9fc81 | |
parent | 5f61971b3c78facc8993c048ff6884ab747226b2 (diff) | |
download | tdegraphics-f87fd6d4e2edaadb65feaeb189e3af80c16693ad.tar.gz tdegraphics-f87fd6d4e2edaadb65feaeb189e3af80c16693ad.zip |
Use common CMake tests.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r-- | CMakeLists.txt | 1 | ||||
-rw-r--r-- | ConfigureChecks.cmake | 29 |
2 files changed, 15 insertions, 15 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7d26cdf1..a705d856 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,6 +26,7 @@ include( CheckTypeSize ) include( CheckCSourceCompiles ) include( CheckCXXSourceCompiles ) include( CheckLibraryExists ) +include( CheckSymbolExists ) ##### include our cmake modules ################# diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 88f6dccb..3a6eae15 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -9,22 +9,26 @@ # ################################################# +# required stuff + +tde_setup_architecture_flags( ) + +include(TestBigEndian) +test_big_endian(WORDS_BIGENDIAN) + +tde_setup_largefiles( ) + +find_package( TQt ) +find_package( TDE ) + + ##### 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") + tde_setup_gcc_visibility( ) endif( ) -tde_setup_architecture_flags( ) - # freetype2 if( BUILD_KDVI OR BUILD_KPDF OR BUILD_KSVG ) pkg_search_module( FREETYPE freetype2 ) @@ -34,8 +38,3 @@ if( BUILD_KDVI OR BUILD_KPDF OR BUILD_KSVG ) tde_message_fatal( "freetype2 is required, but was not found on your system" ) endif( ) endif( ) - - -# required stuff -find_package( TQt ) -find_package( TDE ) |