From eeefa496afbc5025420f1e1c30c1b2ca59fd4353 Mon Sep 17 00:00:00 2001 From: gregory guy Date: Tue, 23 Oct 2018 14:08:03 +0200 Subject: conversion to the cmake building system Signed-off-by: gregory guy --- CMakeLists.txt | 76 ++++++++++++++++++++++++++++++ ConfigureChecks.cmake | 45 ++++++++++++++++++ config.h.cmake | 8 ++++ src/CMakeLists.txt | 15 ++++++ src/doc/CMakeLists.txt | 1 + src/doc/en/CMakeLists.txt | 1 + src/doc/man/CMakeLists.txt | 5 ++ src/doc/man/knetstats.1 | 53 +++++++++++++++++++++ src/src/CMakeLists.txt | 38 +++++++++++++++ src/src/pics/CMakeLists.txt | 6 +++ translations/CMakeLists.txt | 1 + translations/bg/CMakeLists.txt | 1 + translations/bg/messages/CMakeLists.txt | 1 + translations/br/CMakeLists.txt | 1 + translations/br/messages/CMakeLists.txt | 1 + translations/cs/CMakeLists.txt | 1 + translations/cs/messages/CMakeLists.txt | 1 + translations/da/CMakeLists.txt | 1 + translations/da/messages/CMakeLists.txt | 1 + translations/de/CMakeLists.txt | 1 + translations/de/messages/CMakeLists.txt | 1 + translations/el/CMakeLists.txt | 1 + translations/el/messages/CMakeLists.txt | 1 + translations/es/CMakeLists.txt | 1 + translations/es/messages/CMakeLists.txt | 1 + translations/et/CMakeLists.txt | 1 + translations/et/messages/CMakeLists.txt | 1 + translations/fr/CMakeLists.txt | 1 + translations/fr/messages/CMakeLists.txt | 1 + translations/ga/CMakeLists.txt | 1 + translations/ga/messages/CMakeLists.txt | 1 + translations/gl/CMakeLists.txt | 1 + translations/gl/messages/CMakeLists.txt | 1 + translations/it/CMakeLists.txt | 1 + translations/it/messages/CMakeLists.txt | 1 + translations/ja/CMakeLists.txt | 1 + translations/ja/messages/CMakeLists.txt | 1 + translations/ka/CMakeLists.txt | 1 + translations/ka/messages/CMakeLists.txt | 1 + translations/nl/CMakeLists.txt | 1 + translations/nl/messages/CMakeLists.txt | 1 + translations/pl/CMakeLists.txt | 1 + translations/pl/messages/CMakeLists.txt | 1 + translations/pt/CMakeLists.txt | 1 + translations/pt/messages/CMakeLists.txt | 1 + translations/pt_BR/CMakeLists.txt | 1 + translations/pt_BR/messages/CMakeLists.txt | 1 + translations/ru/CMakeLists.txt | 1 + translations/ru/messages/CMakeLists.txt | 1 + translations/sk/CMakeLists.txt | 1 + translations/sk/messages/CMakeLists.txt | 1 + translations/sv/CMakeLists.txt | 1 + translations/sv/messages/CMakeLists.txt | 1 + translations/tr/CMakeLists.txt | 1 + translations/tr/messages/CMakeLists.txt | 1 + 55 files changed, 293 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 ConfigureChecks.cmake create mode 100644 config.h.cmake create mode 100644 src/CMakeLists.txt create mode 100644 src/doc/CMakeLists.txt create mode 100644 src/doc/en/CMakeLists.txt create mode 100644 src/doc/man/CMakeLists.txt create mode 100644 src/doc/man/knetstats.1 create mode 100644 src/src/CMakeLists.txt create mode 100644 src/src/pics/CMakeLists.txt create mode 100644 translations/CMakeLists.txt create mode 100644 translations/bg/CMakeLists.txt create mode 100644 translations/bg/messages/CMakeLists.txt create mode 100644 translations/br/CMakeLists.txt create mode 100644 translations/br/messages/CMakeLists.txt create mode 100644 translations/cs/CMakeLists.txt create mode 100644 translations/cs/messages/CMakeLists.txt create mode 100644 translations/da/CMakeLists.txt create mode 100644 translations/da/messages/CMakeLists.txt create mode 100644 translations/de/CMakeLists.txt create mode 100644 translations/de/messages/CMakeLists.txt create mode 100644 translations/el/CMakeLists.txt create mode 100644 translations/el/messages/CMakeLists.txt create mode 100644 translations/es/CMakeLists.txt create mode 100644 translations/es/messages/CMakeLists.txt create mode 100644 translations/et/CMakeLists.txt create mode 100644 translations/et/messages/CMakeLists.txt create mode 100644 translations/fr/CMakeLists.txt create mode 100644 translations/fr/messages/CMakeLists.txt create mode 100644 translations/ga/CMakeLists.txt create mode 100644 translations/ga/messages/CMakeLists.txt create mode 100644 translations/gl/CMakeLists.txt create mode 100644 translations/gl/messages/CMakeLists.txt create mode 100644 translations/it/CMakeLists.txt create mode 100644 translations/it/messages/CMakeLists.txt create mode 100644 translations/ja/CMakeLists.txt create mode 100644 translations/ja/messages/CMakeLists.txt create mode 100644 translations/ka/CMakeLists.txt create mode 100644 translations/ka/messages/CMakeLists.txt create mode 100644 translations/nl/CMakeLists.txt create mode 100644 translations/nl/messages/CMakeLists.txt create mode 100644 translations/pl/CMakeLists.txt create mode 100644 translations/pl/messages/CMakeLists.txt create mode 100644 translations/pt/CMakeLists.txt create mode 100644 translations/pt/messages/CMakeLists.txt create mode 100644 translations/pt_BR/CMakeLists.txt create mode 100644 translations/pt_BR/messages/CMakeLists.txt create mode 100644 translations/ru/CMakeLists.txt create mode 100644 translations/ru/messages/CMakeLists.txt create mode 100644 translations/sk/CMakeLists.txt create mode 100644 translations/sk/messages/CMakeLists.txt create mode 100644 translations/sv/CMakeLists.txt create mode 100644 translations/sv/messages/CMakeLists.txt create mode 100644 translations/tr/CMakeLists.txt create mode 100644 translations/tr/messages/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..00718bc --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,76 @@ +############################################ +# # +# Improvements and feedbacks are welcome # +# # +# This file is released under GPL >= 3 # +# # +############################################ + + +cmake_minimum_required( VERSION 2.8 ) + + +#### general package setup + +project( knetstats ) +set( VERSION R14.1.0 ) + + +#### include essential cmake modules + +include( FindPkgConfig ) +include( CheckFunctionExists ) +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 "-Wl,--no-undefined" ) +set( CMAKE_MODULE_LINKER_FLAGS "-Wl,--no-undefined" ) + + +##### directories + +add_subdirectory( src ) +tde_conditional_add_subdirectory( BUILD_TRANSLATIONS translations ) + + +##### 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..7733a2a --- /dev/null +++ b/ConfigureChecks.cmake @@ -0,0 +1,45 @@ +########################################### +# # +# 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) + + +##### check for gcc visibility support + +if( WITH_GCC_VISIBILITY ) + if( NOT UNIX ) + tde_message_fatal( "gcc visibility support was requested, but your system is not *NIX" ) + endif( NOT UNIX ) + set( __KDE_HAVE_GCC_VISIBILITY 1 ) + set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fvisibility=hidden -fvisibility-inlines-hidden") + set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility=hidden -fvisibility-inlines-hidden") +endif( WITH_GCC_VISIBILITY ) + + +##### gettext + +if( BUILD_TRANSLATIONS ) + include( FindGettext ) + if( GETTEXT_FOUND ) + set( MSGFMT_EXECUTABLE ${GETTEXT_MSGFMT_EXECUTABLE} + CACHE FILEPATH "path to msgfmt executable" ) + endif( GETTEXT_FOUND ) + + if( NOT MSGFMT_EXECUTABLE ) + tde_message_fatal( "msgfmt is required but was not found on your system." ) + endif( NOT MSGFMT_EXECUTABLE ) +endif( BUILD_TRANSLATIONS ) + 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/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..93766be --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,15 @@ +add_subdirectory( src ) +tde_conditional_add_subdirectory( BUILD_DOC doc ) + + +##### icons + +tde_install_icons( ${PROJECT_NAME} ) + + +##### other data + +install( + FILES ${PROJECT_NAME}.desktop + DESTINATION ${XDG_APPS_INSTALL_DIR} +) diff --git a/src/doc/CMakeLists.txt b/src/doc/CMakeLists.txt new file mode 100644 index 0000000..6d0aa9f --- /dev/null +++ b/src/doc/CMakeLists.txt @@ -0,0 +1 @@ +tde_auto_add_subdirectories( ) diff --git a/src/doc/en/CMakeLists.txt b/src/doc/en/CMakeLists.txt new file mode 100644 index 0000000..ba3ef3e --- /dev/null +++ b/src/doc/en/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_handbook( DESTINATION ${PROJECT_NAME} ) diff --git a/src/doc/man/CMakeLists.txt b/src/doc/man/CMakeLists.txt new file mode 100644 index 0000000..8512250 --- /dev/null +++ b/src/doc/man/CMakeLists.txt @@ -0,0 +1,5 @@ +INSTALL( + FILES ${PROJECT_NAME}.1 + DESTINATION ${MAN_INSTALL_DIR}/man1 + COMPONENT doc +) diff --git a/src/doc/man/knetstats.1 b/src/doc/man/knetstats.1 new file mode 100644 index 0000000..7197c48 --- /dev/null +++ b/src/doc/man/knetstats.1 @@ -0,0 +1,53 @@ +'\" -*- 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 knetstats 1 "16 Oct 2005" "" "" +.SH NAME +knetstats \- A system tray icon, which indicates network activity +.SH SYNOPSIS +'nh +.fi +.ad l +\fBknetstats\fR \kx +.if (\nx>(\n(.l/2)) .nr x (\n(.l/5) +'in \n(.iu+\nxu +[\fB--help \fIPrint options to console.\fB\fR] +'in \n(.iu-\nxu +.ad b +'hy +.SH DESCRIPTION +This manual page documents briefly the +\fBknetstats\fR +commands. +.PP +This manual page was written for the Debian distribution. +Instead, it has documentation in the GNU +Info format; see below. +.PP +\fBknetstats\fR is a program that provides a system tray icon. This icon provides two +LED's, which begin to blink if there is network traffic. +.SH OPTIONS +These programs follow the usual GNU command line syntax, +with long options starting with two dashes (`-'). A summary of +options is included below. For a complete description, see the +Info files. +.TP +\*(T<\fB\-h\fR\*(T> \*(T<\fB\-\-help\fR\*(T> +Show summary of options. +.TP +\*(T<\fB\-v\fR\*(T> \*(T<\fB\-\-version\fR\*(T> +Show version of program. +.SH "SEE ALSO" +.SH AUTHOR +This manual page was written by windheus <\*(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 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 /usr/share/common-licenses/GPL. diff --git a/src/src/CMakeLists.txt b/src/src/CMakeLists.txt new file mode 100644 index 0000000..4b74eac --- /dev/null +++ b/src/src/CMakeLists.txt @@ -0,0 +1,38 @@ +add_subdirectory( pics ) + +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} +) + + +##### knetstats (executable) + +tde_add_executable( ${PROJECT_NAME} AUTOMOC + + SOURCES + configurebase.ui + configure.cpp + statisticsbase.ui + main.cpp + knetstats.cpp + knetstatsview.cpp + statistics.cpp + chart.cpp + interface.cpp + LINK + tdecore-shared + tdeui-shared + tdeio-shared + tdeui-shared + + DESTINATION ${BIN_INSTALL_DIR} +) diff --git a/src/src/pics/CMakeLists.txt b/src/src/pics/CMakeLists.txt new file mode 100644 index 0000000..e7d1781 --- /dev/null +++ b/src/src/pics/CMakeLists.txt @@ -0,0 +1,6 @@ +file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png ) + +install( + FILES ${_pics} + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/pics +) diff --git a/translations/CMakeLists.txt b/translations/CMakeLists.txt new file mode 100644 index 0000000..6d0aa9f --- /dev/null +++ b/translations/CMakeLists.txt @@ -0,0 +1 @@ +tde_auto_add_subdirectories( ) diff --git a/translations/bg/CMakeLists.txt b/translations/bg/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/bg/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/bg/messages/CMakeLists.txt b/translations/bg/messages/CMakeLists.txt new file mode 100644 index 0000000..4902d61 --- /dev/null +++ b/translations/bg/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG bg ) diff --git a/translations/br/CMakeLists.txt b/translations/br/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/br/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/br/messages/CMakeLists.txt b/translations/br/messages/CMakeLists.txt new file mode 100644 index 0000000..cd1ca2d --- /dev/null +++ b/translations/br/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG br ) diff --git a/translations/cs/CMakeLists.txt b/translations/cs/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/cs/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/cs/messages/CMakeLists.txt b/translations/cs/messages/CMakeLists.txt new file mode 100644 index 0000000..a0791b0 --- /dev/null +++ b/translations/cs/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG cs ) diff --git a/translations/da/CMakeLists.txt b/translations/da/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/da/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/da/messages/CMakeLists.txt b/translations/da/messages/CMakeLists.txt new file mode 100644 index 0000000..aae4d18 --- /dev/null +++ b/translations/da/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG da ) diff --git a/translations/de/CMakeLists.txt b/translations/de/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/de/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/de/messages/CMakeLists.txt b/translations/de/messages/CMakeLists.txt new file mode 100644 index 0000000..5770e14 --- /dev/null +++ b/translations/de/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG de ) diff --git a/translations/el/CMakeLists.txt b/translations/el/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/el/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/el/messages/CMakeLists.txt b/translations/el/messages/CMakeLists.txt new file mode 100644 index 0000000..d1ba21b --- /dev/null +++ b/translations/el/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG el ) diff --git a/translations/es/CMakeLists.txt b/translations/es/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/es/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/es/messages/CMakeLists.txt b/translations/es/messages/CMakeLists.txt new file mode 100644 index 0000000..041b7a3 --- /dev/null +++ b/translations/es/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG es ) diff --git a/translations/et/CMakeLists.txt b/translations/et/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/et/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/et/messages/CMakeLists.txt b/translations/et/messages/CMakeLists.txt new file mode 100644 index 0000000..8128397 --- /dev/null +++ b/translations/et/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG et ) diff --git a/translations/fr/CMakeLists.txt b/translations/fr/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/fr/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/fr/messages/CMakeLists.txt b/translations/fr/messages/CMakeLists.txt new file mode 100644 index 0000000..f7eefec --- /dev/null +++ b/translations/fr/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG fr ) diff --git a/translations/ga/CMakeLists.txt b/translations/ga/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/ga/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/ga/messages/CMakeLists.txt b/translations/ga/messages/CMakeLists.txt new file mode 100644 index 0000000..02707f7 --- /dev/null +++ b/translations/ga/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG ga ) diff --git a/translations/gl/CMakeLists.txt b/translations/gl/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/gl/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/gl/messages/CMakeLists.txt b/translations/gl/messages/CMakeLists.txt new file mode 100644 index 0000000..c94a35a --- /dev/null +++ b/translations/gl/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG gl ) diff --git a/translations/it/CMakeLists.txt b/translations/it/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/it/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/it/messages/CMakeLists.txt b/translations/it/messages/CMakeLists.txt new file mode 100644 index 0000000..c54b21c --- /dev/null +++ b/translations/it/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG it ) diff --git a/translations/ja/CMakeLists.txt b/translations/ja/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/ja/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/ja/messages/CMakeLists.txt b/translations/ja/messages/CMakeLists.txt new file mode 100644 index 0000000..a88a684 --- /dev/null +++ b/translations/ja/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG ja ) diff --git a/translations/ka/CMakeLists.txt b/translations/ka/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/ka/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/ka/messages/CMakeLists.txt b/translations/ka/messages/CMakeLists.txt new file mode 100644 index 0000000..a94e633 --- /dev/null +++ b/translations/ka/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG ka ) diff --git a/translations/nl/CMakeLists.txt b/translations/nl/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/nl/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/nl/messages/CMakeLists.txt b/translations/nl/messages/CMakeLists.txt new file mode 100644 index 0000000..66088c7 --- /dev/null +++ b/translations/nl/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG nl ) diff --git a/translations/pl/CMakeLists.txt b/translations/pl/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/pl/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/pl/messages/CMakeLists.txt b/translations/pl/messages/CMakeLists.txt new file mode 100644 index 0000000..ca58df4 --- /dev/null +++ b/translations/pl/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG pl ) diff --git a/translations/pt/CMakeLists.txt b/translations/pt/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/pt/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/pt/messages/CMakeLists.txt b/translations/pt/messages/CMakeLists.txt new file mode 100644 index 0000000..1001c25 --- /dev/null +++ b/translations/pt/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG pt ) diff --git a/translations/pt_BR/CMakeLists.txt b/translations/pt_BR/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/pt_BR/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/pt_BR/messages/CMakeLists.txt b/translations/pt_BR/messages/CMakeLists.txt new file mode 100644 index 0000000..91fae60 --- /dev/null +++ b/translations/pt_BR/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG pt_BR ) diff --git a/translations/ru/CMakeLists.txt b/translations/ru/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/ru/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/ru/messages/CMakeLists.txt b/translations/ru/messages/CMakeLists.txt new file mode 100644 index 0000000..ec8f0d0 --- /dev/null +++ b/translations/ru/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG ru ) diff --git a/translations/sk/CMakeLists.txt b/translations/sk/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/sk/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/sk/messages/CMakeLists.txt b/translations/sk/messages/CMakeLists.txt new file mode 100644 index 0000000..f010fa6 --- /dev/null +++ b/translations/sk/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG sk ) diff --git a/translations/sv/CMakeLists.txt b/translations/sv/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/sv/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/sv/messages/CMakeLists.txt b/translations/sv/messages/CMakeLists.txt new file mode 100644 index 0000000..c26f445 --- /dev/null +++ b/translations/sv/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG sv ) diff --git a/translations/tr/CMakeLists.txt b/translations/tr/CMakeLists.txt new file mode 100644 index 0000000..9c11aea --- /dev/null +++ b/translations/tr/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( messages ) diff --git a/translations/tr/messages/CMakeLists.txt b/translations/tr/messages/CMakeLists.txt new file mode 100644 index 0000000..b968c8e --- /dev/null +++ b/translations/tr/messages/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG tr ) -- cgit v1.2.3