diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2019-01-29 12:40:35 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-01-29 12:40:35 +0100 |
commit | b0c2717fd80109aa418e75298d66b6053fc6666e (patch) | |
tree | 0858b104af05b64a59e30e038f9ef2baf2dfb68e /ConfigureChecks.cmake | |
parent | 74a23fb6b005000172652f4385decd8c730e933d (diff) | |
download | akode-b0c2717fd80109aa418e75298d66b6053fc6666e.tar.gz akode-b0c2717fd80109aa418e75298d66b6053fc6666e.zip |
Update CMake rules
+ Add WITH_GCC_VISIBILITY option
+ Use common tde_setup_gcc_visibility
+ Add TestBigEndian and tde_setup_largefiles
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 743aa72..ea07330 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -10,6 +10,20 @@ ################################################# +# required stuff + +tde_setup_architecture_flags( ) + +include(TestBigEndian) +test_big_endian(WORDS_BIGENDIAN) + +tde_setup_largefiles( ) + +if( WITH_GCC_VISIBILITY ) + tde_setup_gcc_visibility( ) +endif( ) + + ##### check for system libraries ################ if( WITH_LIBLTDL ) |