diff options
author | Slávek Banko <[email protected]> | 2019-02-12 17:23:04 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-02-12 17:23:17 +0100 |
commit | 6a6bdc9bf6ab794e1663dc9450e7a87e26da1b7b (patch) | |
tree | 77f3638dad5d18b4781d58e51714abf296dc7b78 | |
parent | e8d8dae9d73267c77ab2297fb76918754af3d405 (diff) | |
download | knowit-6a6bdc9bf6ab794e1663dc9450e7a87e26da1b7b.tar.gz knowit-6a6bdc9bf6ab794e1663dc9450e7a87e26da1b7b.zip |
Use common CMake tests.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit a8f390d860819ee5fcb4772bdf91587d4c16b7e1)
-rw-r--r-- | CMakeLists.txt | 1 | ||||
-rw-r--r-- | ConfigureChecks.cmake | 28 |
2 files changed, 6 insertions, 23 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2d0e44d..878851b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,6 +20,7 @@ set( VERSION R14.1.0 ) include( FindPkgConfig ) include( CheckFunctionExists ) +include( CheckSymbolExists ) include( CheckIncludeFile ) include( CheckLibraryExists ) include( CheckCSourceCompiles ) diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index dfd13ad..289dd8c 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -16,29 +16,11 @@ tde_setup_architecture_flags( ) include(TestBigEndian) test_big_endian(WORDS_BIGENDIAN) +tde_setup_largefiles( ) -##### check for gcc visibility support + +##### 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 ) - - -##### gettext - -if( BUILD_TRANSLATIONS ) - include( FindGettext ) - if( GETTEXT_FOUND ) - set( MSGFMT_EXECUTABLE ${GETTEXT_MSGFMT_EXECUTABLE} - CACHE FILEPATH "path to msgfmt executable" ) - endif( GETTEXT_FOUND ) - - if( NOT MSGFMT_EXECUTABLE ) - tde_message_fatal( "msgfmt is required but was not found on your system." ) - endif( NOT MSGFMT_EXECUTABLE ) -endif( BUILD_TRANSLATIONS ) + tde_setup_gcc_visibility( ) +endif( ) |