summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2022-12-13 00:23:00 +0100
committerSlávek Banko <slavek.banko@axis.cz>2022-12-13 00:44:38 +0100
commitb02fdb4d705016a6c8e83f9d492b8df7c531b805 (patch)
tree766b40d911fbf23ef6c9ea8f41b4e523c7cf9503 /ConfigureChecks.cmake
parentfacdbc2fcef5f9bfbd56c1eef53e61eb8e7438a1 (diff)
downloadbibletime-b02fdb4d.tar.gz
bibletime-b02fdb4d.zip
Conversion to CMake build system.
Remove the generated files from the source tree. Copy translations to a new directory layout. Added translation of .desktop files. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake81
1 files changed, 81 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
new file mode 100644
index 0000000..d9ff50a
--- /dev/null
+++ b/ConfigureChecks.cmake
@@ -0,0 +1,81 @@
+###########################################
+# #
+# 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 sword library
+
+pkg_search_module( SWORD sword )
+if( NOT SWORD_FOUND )
+ tde_message_fatal( "sword library is required but not found on your system" )
+endif()
+if( NOT SWORD_VERSION VERSION_LESS "1.6" )
+ set( SWORD_MULTIVERSE 1 )
+endif()
+if( NOT SWORD_VERSION VERSION_LESS "1.7" )
+ set( SWORD_API_1_7 1 )
+endif()
+
+check_cxx_source_compiles("
+ #include <signal.h>
+ #include <${SWORD_INCLUDE_DIRS}/sysdata.h>
+ main() {}
+ "
+ SWORD_WITHOUT_SANE_USERSPACE_TYPES
+)
+if( NOT SWORD_WITHOUT_SANE_USERSPACE_TYPES )
+ check_cxx_source_compiles("
+ #define __SANE_USERSPACE_TYPES__
+ #include <signal.h>
+ #include <${SWORD_INCLUDE_DIRS}/sysdata.h>
+ main() {}
+ "
+ SWORD_WITH_SANE_USERSPACE_TYPES
+ )
+ if( NOT SWORD_WITH_SANE_USERSPACE_TYPES )
+ tde_message_fatal( "sword library cannot be used in any way" )
+ endif()
+ add_definitions( "__SANE_USERSPACE_TYPES__" )
+endif()
+
+
+##### check for clucdene library
+
+pkg_search_module( CLUCENE libclucene-core )
+if( NOT CLUCENE_FOUND )
+ tde_message_fatal( "clucene library is required but not found on your system" )
+endif()
+if( NOT CLUCENE_VERSION VERSION_LESS "2.0" )
+ set( CLUCENE_V2 1 )
+endif()
+
+
+##### check for boost library
+
+find_package( Boost )
+
+if( NOT Boost_FOUND )
+ tde_message_fatal( "Boost is required, but was not found on your system" )
+endif()