diff options
author | gregory guy <[email protected]> | 2019-03-27 13:19:34 +0100 |
---|---|---|
committer | gregory guy <[email protected]> | 2019-04-02 14:34:26 +0200 |
commit | 5a362f8830ef8f9fa80b33d410ce0d0cbc4690f1 (patch) | |
tree | 1a02f9e2a751b55c98059eb3ed9cf11cc10deb51 /ConfigureChecks.cmake | |
parent | edd9c850a114601c132d416730df30019ab446fb (diff) | |
download | compizconfig-backend-tdeconfig-5a362f8830ef8f9fa80b33d410ce0d0cbc4690f1.tar.gz compizconfig-backend-tdeconfig-5a362f8830ef8f9fa80b33d410ce0d0cbc4690f1.zip |
conversion to the cmake building system
Signed-off-by: gregory guy <[email protected]>
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake new file mode 100644 index 0000000..a1e2651 --- /dev/null +++ b/ConfigureChecks.cmake @@ -0,0 +1,38 @@ +########################################### +# # +# 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 ) + + +##### check for X11 + +find_package( X11 ) + + +##### check for libcompizconfig + +pkg_search_module( COMPIZCONFIG libcompizconfig ) +if( NOT COMPIZCONFIG_FOUND ) + tde_message_fatal( "libcompizconfig is required, but was not found on your system" ) +endif( NOT COMPIZCONFIG_FOUND ) |