diff options
author | Michele Calgaro <[email protected]> | 2023-12-11 04:11:27 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-03-05 19:29:58 +0900 |
commit | dceb004c9be27e6596151cf9165de2989989154b (patch) | |
tree | e0fc66f0d32395725264b75b002ebf946a292013 /CMakeLists.txt | |
parent | babd37358dba926a68da1fc385d2229e21d77dd9 (diff) | |
download | tde-guidance-dceb004c9be27e6596151cf9165de2989989154b.tar.gz tde-guidance-dceb004c9be27e6596151cf9165de2989989154b.zip |
Conversion to cmake building system
Signed-off-by: Michele Calgaro <[email protected]>
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 95f2a2d8b59e13dcdcd7e58ed4ec8553f039b45e)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..fe9ca76 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,91 @@ +############################################ +# +# (C) 2023 Michele Calgaro +# Michele (DOT) Calgaro (AT) yahoo.it +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +############################################ + + +cmake_minimum_required( VERSION 3.5 ) + + +#### general package setup + +project( tde-guidance ) + + +#### include essential cmake modules + +include( FindPkgConfig ) +include( CheckSymbolExists ) +include( CheckIncludeFile ) +include( CheckLibraryExists ) +include( CheckCSourceCompiles ) +include( CheckCXXSourceCompiles ) +include( CheckTypeSize ) + + +#### include our cmake modules + +include( TDEMacros ) + + +##### set version number + +tde_set_project_version( ) + + +##### setup install paths + +include( TDESetupPaths ) +tde_setup_paths( ) + + +##### optional stuff + +option( WITH_ALL_OPTIONS "Enable all optional support" OFF ) + +option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} ) + + +##### user requested modules + +option( BUILD_ALL "Build all" ON ) +option( BUILD_DOC "Build documentation" ${BUILD_ALL} ) +option( BUILD_TRANSLATIONS "Build translations" ${BUILD_ALL} ) + + + +##### configure checks + +include( ConfigureChecks.cmake ) + + +##### global compiler settings + +set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TQT_CXX_FLAGS}" ) +set( CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined" ) +set( CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined" ) + + +##### directories + +add_subdirectory( kde ) +add_subdirectory( mountconfig ) +add_subdirectory( serviceconfig ) +add_subdirectory( userconfig ) + + +##### other data ################################ + +tde_conditional_add_project_docs( BUILD_DOC ) +#tde_conditional_add_subdirectory( BUILD_TRANSLATIONS ) + + +##### write configure files + +configure_file( config.h.cmake config.h @ONLY ) |