diff options
author | Michele Calgaro <[email protected]> | 2023-12-11 04:11:27 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-03-05 10:23:45 +0900 |
commit | 95f2a2d8b59e13dcdcd7e58ed4ec8553f039b45e (patch) | |
tree | 933488bf4df57a5bf417ed94e3b63bf5e79e632b /CMakeLists.txt | |
parent | fb563936c18efd3808cb88d6e6dc68f8997befac (diff) | |
download | tde-guidance-95f2a2d8b59e13dcdcd7e58ed4ec8553f039b45e.tar.gz tde-guidance-95f2a2d8b59e13dcdcd7e58ed4ec8553f039b45e.zip |
Conversion to cmake building system
Signed-off-by: Michele Calgaro <[email protected]>
Signed-off-by: Slávek Banko <[email protected]>
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 ) |