conversion to the cmake building system

Signed-off-by: gregory guy <g-gregory@gmx.fr>
pull/7/head
gregory guy 5 years ago
parent fc727c6f72
commit 6722353577
No known key found for this signature in database
GPG Key ID: 6EFE0EF249A874C0

@ -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( kerry )
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 )

@ -0,0 +1,41 @@
###########################################
# #
# 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 libbeagle
pkg_search_module( LIBBEAGLE libbeagle-1.0 )
if( NOT LIBBEAGLE_FOUND )
tde_message_fatal( "The libbeagle library is required but was not found on your system" )
endif( NOT LIBBEAGLE_FOUND )
##### check for glib-2.0
pkg_search_module( GLIB2 glib-2.0 )
if( NOT GLIB2_FOUND )
tde_message_fatal( "The glib-2.0 library is required but was not found on your system" )
endif( NOT GLIB2_FOUND )

@ -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@

@ -0,0 +1 @@
add_subdirectory( man )

@ -0,0 +1,5 @@
INSTALL(
FILES ${PROJECT_NAME}.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,67 @@
'\" -*- 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 kerry 1 2006-03-26 "" ""
.SH NAME
kerry \- a Beagle frontend for TDE
.SH SYNOPSIS
'nh
.fi
.ad l
\fBkautoclick\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
Kerry is a frontend for Beagle for the TDE desktop.
.SH OPTIONS
All TDE and Qt
programs accept a some common command-line options. Kerry 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 Jonathan Patrick Davies
<\*(T<jpatrick@ubuntu.com\*(T>> for the
Ubuntu 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>.

@ -0,0 +1 @@
add_subdirectory( src )

@ -0,0 +1,65 @@
add_subdirectory( kcm )
add_subdirectory( icons )
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${LIBBEAGLE_INCLUDE_DIRS}
${GLIB2_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
tde_add_tdeinit_executable( ${PROJECT_NAME} AUTOMOC
SOURCES
searchdlg_layout.ui
hitwidget_layout.ui
dcopinterface.stub
dcopinterface.skel
main.cpp
beaglesearch.cpp
kerryapp.cpp
searchdlg.cpp
hitwidget.cpp
kwidgetlistbox.cpp
kerrylabel.cpp
query.cpp
LINK
tdecore-shared
tdeui-shared
tdeio-shared
tdeabc-shared
konq
${LIBBEAGLE_LIBRARIES}
${GLIB2_LIBRARIES}
)
##### other data
install(
FILES ${PROJECT_NAME}.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
install(
FILES kerry.autostart.desktop beagled.desktop
DESTINATION ${AUTOSTART_INSTALL_DIR}
)
install(
FILES search-running.mng
DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}
)
install(
PROGRAMS beagled-shutdown
DESTINATION ${BIN_INSTALL_DIR}
)

@ -0,0 +1 @@
tde_install_icons( kerry kerry_systemtray kerry_info kerry_arrow )

@ -0,0 +1,50 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${LIBBEAGLE_INCLUDE_DIRS}
${GLIB2_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### kcm_beagle (kpart)
tde_add_kpart( kcm_beagle AUTOMOC
SOURCES
select_privacy_resource.ui
main.cpp
beagle.cpp
kerry.cpp
indexing.cpp
backends.cpp
status.cpp
search.cpp
LINK
tdecore-shared
tdeui-shared
tdeio-shared
${LIBBEAGLE_LIBRARIES}
DESTINATION ${PLUGIN_INSTALL_DIR}
)
##### other data
install(
FILES kcmbeagle.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
install(
FILES kcmkerry.desktop
DESTINATION ${APPS_INSTALL_DIR}/.hidden/
)

@ -0,0 +1,7 @@
file( GLOB_RECURSE po_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.po )
foreach( _po ${po_files} )
string( REPLACE "/" ";" _path "${_po}" )
list( GET _path 0 _lang )
tde_create_translation( FILES ${_po} LANG ${_lang} )
endforeach( )
Loading…
Cancel
Save