diff options
author | Michele Calgaro <[email protected]> | 2023-08-04 16:23:49 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-08-06 17:09:43 +0900 |
commit | b7e134e27e65c5cc4ae2cd49d41f680ffa20a593 (patch) | |
tree | c5dc23628f49091d3f6e8e82f5bb556985399020 /CMakeLists.txt | |
parent | 0984c8a873d7ed24259cf1ba600a3c989cdb3b08 (diff) | |
download | k9copy-b7e134e27e65c5cc4ae2cd49d41f680ffa20a593.tar.gz k9copy-b7e134e27e65c5cc4ae2cd49d41f680ffa20a593.zip |
Conversion to cmake build system
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 4aae9b72d7164684622eab039f82833d02d3ce7a)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..d5d8677 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,92 @@ +############################################ +# # +# Improvements and feedbacks are welcome # +# # +# This file is released under GPL >= 3 # +# # +############################################ + + +cmake_minimum_required( VERSION 3.1 ) + + +#### general package setup + +project( k9copy ) + + +#### include essential cmake modules + +include( FindPkgConfig ) +include( CheckFunctionExists ) +include( CheckSymbolExists ) +include( CheckIncludeFile ) +include( CheckLibraryExists ) +include( CheckCSourceCompiles ) +include( CheckCXXSourceCompiles ) + + +#### 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_OPENGL "Enable OpenGL" ${WITH_ALL_OPTIONS} ) + +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 + +add_definitions( -DHAVE_CONFIG_H ) + +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" ) + + +##### source directories + +add_subdirectory( icons ) +add_subdirectory( k9decmpeg ) +add_subdirectory( k9devices ) +add_subdirectory( k9Mplayer ) +add_subdirectory( k9vamps ) +add_subdirectory( libdvdnav ) +add_subdirectory( libk9copy ) +add_subdirectory( k9author ) +add_subdirectory( src ) + +tde_conditional_add_project_docs( BUILD_DOC ) +tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po ) + + +##### write configure files + +configure_file( config.h.cmake config.h @ONLY ) |