diff options
author | gregory guy <[email protected]> | 2019-05-08 14:46:23 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-05-09 15:16:44 +0200 |
commit | afdfc9b17d1a626fecbfb3ac4c5828beea6fec47 (patch) | |
tree | c64bc7c5a059a02107c3c209b041c64010d15e4f /ConfigureChecks.cmake | |
parent | a4fed294ff0451681fdba458429c7a1cbc1dbd1d (diff) | |
download | kxmleditor-afdfc9b17d1a626fecbfb3ac4c5828beea6fec47.tar.gz kxmleditor-afdfc9b17d1a626fecbfb3ac4c5828beea6fec47.zip |
conversion to the cmake building system
Signed-off-by: gregory guy <[email protected]>
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake new file mode 100644 index 0000000..d1e3778 --- /dev/null +++ b/ConfigureChecks.cmake @@ -0,0 +1,25 @@ +########################################### +# # +# 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) + +tde_setup_largefiles( ) + + +##### check for gcc visibility support + +if( WITH_GCC_VISIBILITY ) + tde_setup_gcc_visibility( ) +endif( WITH_GCC_VISIBILITY ) |