From 14bb845a29befcb8b11e2b55a43c58684d9acac0 Mon Sep 17 00:00:00 2001 From: gregory guy Date: Sun, 19 May 2019 19:22:18 +0200 Subject: [PATCH] conversion to the cmake building system Signed-off-by: gregory guy --- CMakeLists.txt | 78 ++++++++++++++++++++++++++++++++++++++ ConfigureChecks.cmake | 25 ++++++++++++ config.h.cmake | 8 ++++ doc/CMakeLists.txt | 1 + doc/man/CMakeLists.txt | 5 +++ doc/man/keep.1 | 69 +++++++++++++++++++++++++++++++++ keep/CMakeLists.txt | 4 ++ keep/app/CMakeLists.txt | 70 ++++++++++++++++++++++++++++++++++ keep/common/CMakeLists.txt | 36 ++++++++++++++++++ keep/icons/CMakeLists.txt | 3 ++ keep/kded/CMakeLists.txt | 40 +++++++++++++++++++ po/CMakeLists.txt | 7 ++++ 12 files changed, 346 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 ConfigureChecks.cmake create mode 100644 config.h.cmake create mode 100644 doc/CMakeLists.txt create mode 100644 doc/man/CMakeLists.txt create mode 100644 doc/man/keep.1 create mode 100644 keep/CMakeLists.txt create mode 100644 keep/app/CMakeLists.txt create mode 100644 keep/common/CMakeLists.txt create mode 100644 keep/icons/CMakeLists.txt create mode 100644 keep/kded/CMakeLists.txt create mode 100644 po/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..679cf70 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,78 @@ +############################################ +# # +# Improvements and feedbacks are welcome # +# # +# This file is released under GPL >= 3 # +# # +############################################ + + +cmake_minimum_required( VERSION 2.8 ) + + +#### general package setup + +project( keep ) +set( VERSION R14.1.0 ) + + +#### include essential cmake modules + +include( FindPkgConfig ) +include( CheckFunctionExists ) +include( CheckSymbolExists ) +include( CheckIncludeFile ) +include( CheckLibraryExists ) +include( CheckCSourceCompiles ) +include( CheckCXXSourceCompiles ) + + +#### include our cmake modules + +set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" ) +include( TDEMacros ) + + +##### 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 + +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" ) + + +##### directories + +add_subdirectory( ${PROJECT_NAME} ) +tde_conditional_add_subdirectory( BUILD_DOC doc ) +tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po ) + + +##### write configure files + +configure_file( config.h.cmake config.h @ONLY ) diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake new file mode 100644 index 0000000..d1e3778 --- /dev/null +++ b/ConfigureChecks.cmake @@ -0,0 +1,25 @@ +########################################### +# # +# 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 ) diff --git a/config.h.cmake b/config.h.cmake new file mode 100644 index 0000000..61ede3a --- /dev/null +++ b/config.h.cmake @@ -0,0 +1,8 @@ +#define VERSION "@VERSION@" + +// Defined if you have fvisibility and fvisibility-inlines-hidden support. +#cmakedefine __KDE_HAVE_GCC_VISIBILITY 1 + +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel). */ +#cmakedefine WORDS_BIGENDIAN @WORDS_BIGENDIAN@ diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt new file mode 100644 index 0000000..6d0aa9f --- /dev/null +++ b/doc/CMakeLists.txt @@ -0,0 +1 @@ +tde_auto_add_subdirectories( ) diff --git a/doc/man/CMakeLists.txt b/doc/man/CMakeLists.txt new file mode 100644 index 0000000..8512250 --- /dev/null +++ b/doc/man/CMakeLists.txt @@ -0,0 +1,5 @@ +INSTALL( + FILES ${PROJECT_NAME}.1 + DESTINATION ${MAN_INSTALL_DIR}/man1 + COMPONENT doc +) diff --git a/doc/man/keep.1 b/doc/man/keep.1 new file mode 100644 index 0000000..1f9b7c5 --- /dev/null +++ b/doc/man/keep.1 @@ -0,0 +1,69 @@ +'\" -*- coding: us-ascii -*- +.if \n(.g .ds T< \\FC +.if \n(.g .ds T> \\F[\n[.fam]] +.de URL +\\$2 \(la\\$1\(ra\\$3 +.. +.if \n(.g .mso www.tmac +.TH keep 1 2005-12-27 "" "" +.SH NAME +keep \- backup system for TDE +.SH SYNOPSIS +'nh +.fi +.ad l +\fBkeep\fR \kx +.if (\nx>(\n(.l/2)) .nr x (\n(.l/5) +'in \n(.iu+\nxu +[ +\fB\fIQt-options\fB\fR +] [ +\fB\fITDE-options\fB\fR +] +'in \n(.iu-\nxu +.ad b +'hy +.SH DESCRIPTION +backup system for TDE. +.PP +The behavior is quite simple: you choose the files you want to backup, you set up the frequency and the number of backup you want to have, and Keep will backup them automatically. +.SH OPTIONS +All TDE and Qt +programs accept a some common command-line options. keep has no +application-specific options. +.PP +.TP +\*(T<\fB\-\-help\fR\*(T> +Show help about options +.TP +\*(T<\fB\-\-help\-qt\fR\*(T> +Show Qt specific options +.TP +\*(T<\fB\-\-help\-tde\fR\*(T> +Show TDE specific options +.TP +\*(T<\fB\-\-help\-all\fR\*(T> +Show all options +.TP +\*(T<\fB\-\-author\fR\*(T> +Show author information +.TP +\*(T<\fB\-v\fR\*(T>, \*(T<\fB\-\-version\fR\*(T> +Show version information +.TP +\*(T<\fB\-\-license\fR\*(T> +Show license information +.TP +\*(T<\fB\-\-\fR\*(T> +Indicates end of options +.SH COPYRIGHT +This manual page was written by Anthony Mercatante +<\*(T> for the +Debian system (but may be used by others). +Permission is granted to copy, distribute and/or modify this document +under the terms of the GNU General Public License, +Version 2 or any later version published by the Free Software Foundation. +.PP +On Debian systems, the complete text of the GNU General Public +License can be found in +\*(T<\fI/usr/share/common\-licenses/GPL\fR\*(T>. diff --git a/keep/CMakeLists.txt b/keep/CMakeLists.txt new file mode 100644 index 0000000..ca683ba --- /dev/null +++ b/keep/CMakeLists.txt @@ -0,0 +1,4 @@ +add_subdirectory( common ) +add_subdirectory( app ) +add_subdirectory( kded ) +add_subdirectory( icons ) diff --git a/keep/app/CMakeLists.txt b/keep/app/CMakeLists.txt new file mode 100644 index 0000000..36d9dda --- /dev/null +++ b/keep/app/CMakeLists.txt @@ -0,0 +1,70 @@ +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} + ${CMAKE_SOURCE_DIR}/keep/common + ${CMAKE_BINARY_DIR}/keep/common +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${TDE_LIB_DIR} +) + + +##### keep (executable) + +tde_add_executable( ${PROJECT_NAME} AUTOMOC + + SOURCES + actionview.ui + forcebackupdialogview.ui + includeexcludeview.ui + advancedbackupconfigview.ui + generalconfigview.ui + addbackupwizard1view.ui + addbackupwizard2view.ui + addbackupwizard3view.ui + restorebackupwizard1view.ui + restorebackupwizard2view.ui + restorebackupwizard3view.ui + backuplistview.ui + main.cpp + keepmainwindow.cpp + backuplistwidget.cpp + restorebackupwizard.cpp + addbackupwizard.cpp + forcebackupdialog.cpp + backupconfigdialog.cpp + logview.ui + logdialog.cpp + includeexcludedialog.cpp + advancedbackupconfigdialog.cpp + LINK + tdecore-shared + tdeui-shared + tdeio-shared + keep-static + + DESTINATION ${BIN_INSTALL_DIR} +) + + +##### icons + +tde_install_icons( ${PROJECT_NAME} ) + + +##### other data + +install( + FILES keepui.rc + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME} +) + +install( + FILES ${PROJECT_NAME}.desktop + DESTINATION ${XDG_APPS_INSTALL_DIR} +) diff --git a/keep/common/CMakeLists.txt b/keep/common/CMakeLists.txt new file mode 100644 index 0000000..073906c --- /dev/null +++ b/keep/common/CMakeLists.txt @@ -0,0 +1,36 @@ +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${TDE_LIB_DIR} +) + + +##### keep (static) + +tde_add_library( keep STATIC_PIC AUTOMOC + + SOURCES + keepsettings.kcfgc + backuplistviewitem.cpp + backup.cpp + backupconfig.cpp + rdblistener.cpp + rdbmanager.cpp + incrementlistviewitem.cpp + includeexcludeitem.cpp +) + + +##### other data + +install( + FILES keepsettings.kcfg + DESTINATION ${KCFG_INSTALL_DIR} +) diff --git a/keep/icons/CMakeLists.txt b/keep/icons/CMakeLists.txt new file mode 100644 index 0000000..4966817 --- /dev/null +++ b/keep/icons/CMakeLists.txt @@ -0,0 +1,3 @@ +##### icons + +tde_install_icons( DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/icons ) diff --git a/keep/kded/CMakeLists.txt b/keep/kded/CMakeLists.txt new file mode 100644 index 0000000..41b0e28 --- /dev/null +++ b/keep/kded/CMakeLists.txt @@ -0,0 +1,40 @@ +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} + ${CMAKE_SOURCE_DIR}/keep/common + ${CMAKE_BINARY_DIR}/keep/common +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${TDE_LIB_DIR} +) + + +##### kded_keep (kpart) + +tde_add_kpart( kded_keep AUTOMOC + + SOURCES + keepkded.cpp + keepkded.skel + LINK + tdecore-shared + tdeui-shared + tdeio-shared + tdeinit_kded-shared + keep-static + + DESTINATION ${PLUGIN_INSTALL_DIR} +) + + +##### other data + +install( + FILES ${PROJECT_NAME}.desktop + DESTINATION ${SERVICES_INSTALL_DIR}/kded +) diff --git a/po/CMakeLists.txt b/po/CMakeLists.txt new file mode 100644 index 0000000..e3b5278 --- /dev/null +++ b/po/CMakeLists.txt @@ -0,0 +1,7 @@ +file( GLOB_RECURSE po_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ${PROJECT_NAME}.po ) + +foreach( _po ${po_files} ) + string( REPLACE "/" ";" _path "${_po}" ) + list( GET _path 0 _lang ) + tde_create_translation( FILES ${_po} LANG ${_lang} ) +endforeach( )