diff options
author | Slávek Banko <[email protected]> | 2019-02-12 21:54:39 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-02-12 21:54:52 +0100 |
commit | 34afb4200bea62891b71c99cfd701be9dfcccf56 (patch) | |
tree | 743589c4dd0ba6cb8c239ca06ece41f769ff8ba7 | |
parent | 94314299e58ceb677cb40be61a841fb072fa483b (diff) | |
download | kpowersave-34afb4200bea62891b71c99cfd701be9dfcccf56.tar.gz kpowersave-34afb4200bea62891b71c99cfd701be9dfcccf56.zip |
Use common CMake tests.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit a02dce56e2bb15faada6ebbe93de81cb39e0ac95)
-rw-r--r-- | CMakeLists.txt | 3 | ||||
-rw-r--r-- | ConfigureChecks.cmake | 27 |
2 files changed, 16 insertions, 14 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d0030b7..6f9bcf2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,8 +19,9 @@ project( kpowersave ) ##### include essential cmake modules ########### -include( CheckCXXSourceCompiles ) include( FindPkgConfig ) +include( CheckSymbolExists ) +include( CheckCXXSourceCompiles ) ##### include our cmake modules ################# diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 34742b8..1fe9569 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -9,17 +9,23 @@ # ################################################# + +# required stuff +find_package( TQt ) +find_package( TDE ) + +tde_setup_architecture_flags( ) + +include(TestBigEndian) +test_big_endian(WORDS_BIGENDIAN) + +tde_setup_largefiles( ) + + ##### 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( ) @@ -69,8 +75,3 @@ pkg_search_module( DBUS_TQT dbus-tqt ) if( NOT DBUS_TQT_FOUND ) tde_message_fatal( "dbus-tqt is required, but was not found on your system" ) endif( ) - - -# required stuff -find_package( TQt ) -find_package( TDE ) |