summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgregory guy <g-gregory@gmx.fr>2018-09-20 17:06:23 +0200
committerSlávek Banko <slavek.banko@axis.cz>2018-09-22 15:39:08 +0200
commit58580c91c19ae366c479078ffc09ed35ef6dea4b (patch)
tree61a49e37c9cfcf4d1bebae63da45d245d64470c7
parent6f33d9362a7986a4bfa8505b6bcd32a4447f740e (diff)
downloadkiosktool-58580c91c19ae366c479078ffc09ed35ef6dea4b.tar.gz
kiosktool-58580c91c19ae366c479078ffc09ed35ef6dea4b.zip
conversion to the cmake building system
Signed-off-by: gregory guy <g-gregory@gmx.fr> (cherry picked from commit e9398903e02dc665d77bca0c0563153d71cda0fa)
-rw-r--r--CMakeLists.txt78
-rw-r--r--ConfigureChecks.cmake45
-rw-r--r--config.h.cmake8
-rw-r--r--doc/CMakeLists.txt7
-rw-r--r--doc/da/CMakeLists.txt1
-rw-r--r--doc/it/CMakeLists.txt1
-rw-r--r--doc/kiosktool/CMakeLists.txt1
-rw-r--r--doc/man/CMakeLists.txt8
-rw-r--r--doc/man/kiosktool-tdedirs.1146
-rw-r--r--doc/man/kiosktool.1150
-rw-r--r--doc/nl/CMakeLists.txt1
-rw-r--r--doc/pt/CMakeLists.txt1
-rw-r--r--doc/sv/CMakeLists.txt1
-rw-r--r--kiosktool/CMakeLists.txt93
-rw-r--r--kiosktool/kcms/CMakeLists.txt1
-rw-r--r--kiosktool/kcms/autostart/CMakeLists.txt34
-rw-r--r--po/CMakeLists.txt1
-rw-r--r--po/bg/CMakeLists.txt1
-rw-r--r--po/br/CMakeLists.txt1
-rw-r--r--po/ca/CMakeLists.txt1
-rw-r--r--po/cs/CMakeLists.txt1
-rw-r--r--po/cy/CMakeLists.txt1
-rw-r--r--po/da/CMakeLists.txt1
-rw-r--r--po/de/CMakeLists.txt1
-rw-r--r--po/en_GB/CMakeLists.txt1
-rw-r--r--po/es/CMakeLists.txt1
-rw-r--r--po/et/CMakeLists.txt1
-rw-r--r--po/fr/CMakeLists.txt1
-rw-r--r--po/ga/CMakeLists.txt1
-rw-r--r--po/is/CMakeLists.txt1
-rw-r--r--po/it/CMakeLists.txt1
-rw-r--r--po/lt/CMakeLists.txt1
-rw-r--r--po/mt/CMakeLists.txt1
-rw-r--r--po/nl/CMakeLists.txt1
-rw-r--r--po/pt/CMakeLists.txt1
-rw-r--r--po/pt_BR/CMakeLists.txt1
-rw-r--r--po/ro/CMakeLists.txt1
-rw-r--r--po/ru/CMakeLists.txt1
-rw-r--r--po/sr/CMakeLists.txt1
-rw-r--r--po/sr@Latn/CMakeLists.txt1
-rw-r--r--po/sv/CMakeLists.txt1
-rw-r--r--po/ta/CMakeLists.txt1
-rw-r--r--po/tr/CMakeLists.txt1
-rw-r--r--po/xx/CMakeLists.txt1
44 files changed, 604 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..15f077d
--- /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( kiosktool )
+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( ${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..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/doc/CMakeLists.txt b/doc/CMakeLists.txt
new file mode 100644
index 0000000..0071bcc
--- /dev/null
+++ b/doc/CMakeLists.txt
@@ -0,0 +1,7 @@
+add_subdirectory( ${PROJECT_NAME} )
+add_subdirectory( man )
+#add_subdirectory( da )
+#add_subdirectory( it )
+#add_subdirectory( nl )
+#add_subdirectory( pt )
+#add_subdirectory( sv )
diff --git a/doc/da/CMakeLists.txt b/doc/da/CMakeLists.txt
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/doc/da/CMakeLists.txt
@@ -0,0 +1 @@
+
diff --git a/doc/it/CMakeLists.txt b/doc/it/CMakeLists.txt
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/doc/it/CMakeLists.txt
@@ -0,0 +1 @@
+
diff --git a/doc/kiosktool/CMakeLists.txt b/doc/kiosktool/CMakeLists.txt
new file mode 100644
index 0000000..ba3ef3e
--- /dev/null
+++ b/doc/kiosktool/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_handbook( DESTINATION ${PROJECT_NAME} )
diff --git a/doc/man/CMakeLists.txt b/doc/man/CMakeLists.txt
new file mode 100644
index 0000000..3566987
--- /dev/null
+++ b/doc/man/CMakeLists.txt
@@ -0,0 +1,8 @@
+INSTALL(
+ FILES
+ ${PROJECT_NAME}.1
+ ${PROJECT_NAME}-tdedirs.1
+
+ DESTINATION ${MAN_INSTALL_DIR}/man1
+ COMPONENT doc
+)
diff --git a/doc/man/kiosktool-tdedirs.1 b/doc/man/kiosktool-tdedirs.1
new file mode 100644
index 0000000..40cc5a9
--- /dev/null
+++ b/doc/man/kiosktool-tdedirs.1
@@ -0,0 +1,146 @@
+.\" This file was generated by kdemangen.pl
+.TH KIOSKTOOL\-TDEDIRS 1 "Ago 2004" "Trinity Desktop Environment" "A tool to set $TDEDIRS according to the current user profile."
+.SH NAME
+kiosktool\-tdedirs
+\- A tool to set $TDEDIRS according to the current user profile.
+.SH SYNOPSIS
+kiosktool\-tdedirs [Qt\-options] [TDE\-options] [options]
+.SH DESCRIPTION
+
+.SH OPTIONS
+.SS Options:
+.TP
+.B \-\-check
+Output currently active prefixes
+.SS Generic options:
+.TP
+.B \-\-help
+Show help about options
+.TP
+.B \-\-help\-qt
+Show Qt specific options
+.TP
+.B \-\-help\-tde
+Show TDE specific options
+.TP
+.B \-\-help\-all
+Show all options
+.TP
+.B \-\-author
+Show author information
+.TP
+.B \-v, \-\-version
+Show version information
+.TP
+.B \-\-license
+Show license information
+.TP
+.B \-\-
+End of options
+.SS
+.SS TDE options:
+.TP
+.B \-\-caption <caption>
+Use 'caption' as name in the titlebar.
+.TP
+.B \-\-icon <icon>
+Use 'icon' as the application icon.
+.TP
+.B \-\-miniicon <icon>
+Use 'icon' as the icon in the titlebar.
+.TP
+.B \-\-config <filename>
+Use alternative configuration file.
+.TP
+.B \-\-dcopserver <server>
+Use the DCOP Server specified by 'server'.
+.TP
+.B \-\-nocrashhandler
+Disable crash handler, to get core dumps.
+.TP
+.B \-\-waitforwm
+Waits for a WM_NET compatible windowmanager.
+.TP
+.B \-\-style <style>
+sets the application GUI style.
+.TP
+.B \-\-geometry <geometry>
+sets the client geometry of the main widget.
+.SS
+.SS Qt options:
+.TP
+.B \-\-display <displayname>
+Use the X\-server display 'displayname'.
+.TP
+.B \-\-session <sessionId>
+Restore the application for the given 'sessionId'.
+.TP
+.B \-\-cmap
+Causes the application to install a private color
+map on an 8\-bit display.
+.TP
+.B \-\-ncols <count>
+Limits the number of colors allocated in the color
+cube on an 8\-bit display, if the application is
+using the QApplication::ManyColor color
+specification.
+.TP
+.B \-\-nograb
+tells Qt to never grab the mouse or the keyboard.
+.TP
+.B \-\-dograb
+running under a debugger can cause an implicit
+\-nograb, use \-dograb to override.
+.TP
+.B \-\-sync
+switches to synchronous mode for debugging.
+.TP
+.B \-\-fn, \-\-font <fontname>
+defines the application font.
+.TP
+.B \-\-bg, \-\-background <color>
+sets the default background color and an
+application palette (light and dark shades are
+calculated).
+.TP
+.B \-\-fg, \-\-foreground <color>
+sets the default foreground color.
+.TP
+.B \-\-btn, \-\-button <color>
+sets the default button color.
+.TP
+.B \-\-name <name>
+sets the application name.
+.TP
+.B \-\-title <title>
+sets the application title (caption).
+.TP
+.B \-\-visual TrueColor
+forces the application to use a TrueColor visual on
+an 8\-bit display.
+.TP
+.B \-\-inputstyle <inputstyle>
+sets XIM (X Input Method) input style. Possible
+values are onthespot, overthespot, offthespot and
+root.
+.TP
+.B \-\-im <XIM server>
+set XIM server.
+.TP
+.B \-\-noxim
+disable XIM.
+.TP
+.B \-\-reverse
+mirrors the whole layout of widgets.
+.SS
+
+.SH SEE ALSO
+Full user documentation is available through the TDE Help Center. You can also enter the URL
+.BR help:/kiosktool\-tdedirs/
+directly into konqueror or you can run
+.BR "`khelpcenter help:/kiosktool\-tdedirs/'"
+from the command\-line.
+.br
+.SH AUTHORS
+.nf
+
diff --git a/doc/man/kiosktool.1 b/doc/man/kiosktool.1
new file mode 100644
index 0000000..ef68463
--- /dev/null
+++ b/doc/man/kiosktool.1
@@ -0,0 +1,150 @@
+.\" This file was generated by kdemangen.pl
+.TH KIOSKTOOL 1 "Ago 2004" "Trinity Desktop Environment" "KIOSK Admin Tool"
+.SH NAME
+kiosktool
+\- KIOSK Admin Tool
+.SH SYNOPSIS
+kiosktool [Qt\-options] [TDE\-options] [options]
+.SH DESCRIPTION
+With this application we can lock the access to some parts of Trinity desktop
+and its applications.
+
+.SH OPTIONS
+.SS Options:
+.TP
+.B \-\-tderc <file>
+tderc file to save settings to [/etc/tderc]
+.SS Generic options:
+.TP
+.B \-\-help
+Show help about options
+.TP
+.B \-\-help\-qt
+Show Qt specific options
+.TP
+.B \-\-help\-tde
+Show TDE specific options
+.TP
+.B \-\-help\-all
+Show all options
+.TP
+.B \-\-author
+Show author information
+.TP
+.B \-v, \-\-version
+Show version information
+.TP
+.B \-\-license
+Show license information
+.TP
+.B \-\-
+End of options
+.SS
+.SS TDE options:
+.TP
+.B \-\-caption <caption>
+Use 'caption' as name in the titlebar.
+.TP
+.B \-\-icon <icon>
+Use 'icon' as the application icon.
+.TP
+.B \-\-miniicon <icon>
+Use 'icon' as the icon in the titlebar.
+.TP
+.B \-\-config <filename>
+Use alternative configuration file.
+.TP
+.B \-\-dcopserver <server>
+Use the DCOP Server specified by 'server'.
+.TP
+.B \-\-nocrashhandler
+Disable crash handler, to get core dumps.
+.TP
+.B \-\-waitforwm
+Waits for a WM_NET compatible windowmanager.
+.TP
+.B \-\-style <style>
+sets the application GUI style.
+.TP
+.B \-\-geometry <geometry>
+sets the client geometry of the main widget.
+.SS
+.SS Qt options:
+.TP
+.B \-\-display <displayname>
+Use the X\-server display 'displayname'.
+.TP
+.B \-\-session <sessionId>
+Restore the application for the given 'sessionId'.
+.TP
+.B \-\-cmap
+Causes the application to install a private color
+map on an 8\-bit display.
+.TP
+.B \-\-ncols <count>
+Limits the number of colors allocated in the color
+cube on an 8\-bit display, if the application is
+using the QApplication::ManyColor color
+specification.
+.TP
+.B \-\-nograb
+tells Qt to never grab the mouse or the keyboard.
+.TP
+.B \-\-dograb
+running under a debugger can cause an implicit
+\-nograb, use \-dograb to override.
+.TP
+.B \-\-sync
+switches to synchronous mode for debugging.
+.TP
+.B \-\-fn, \-\-font <fontname>
+defines the application font.
+.TP
+.B \-\-bg, \-\-background <color>
+sets the default background color and an
+application palette (light and dark shades are
+calculated).
+.TP
+.B \-\-fg, \-\-foreground <color>
+sets the default foreground color.
+.TP
+.B \-\-btn, \-\-button <color>
+sets the default button color.
+.TP
+.B \-\-name <name>
+sets the application name.
+.TP
+.B \-\-title <title>
+sets the application title (caption).
+.TP
+.B \-\-visual TrueColor
+forces the application to use a TrueColor visual on
+an 8\-bit display.
+.TP
+.B \-\-inputstyle <inputstyle>
+sets XIM (X Input Method) input style. Possible
+values are onthespot, overthespot, offthespot and
+root.
+.TP
+.B \-\-im <XIM server>
+set XIM server.
+.TP
+.B \-\-noxim
+disable XIM.
+.TP
+.B \-\-reverse
+mirrors the whole layout of widgets.
+.SS
+
+.SH SEE ALSO
+Full user documentation is available through the TDE Help Center. You can also enter the URL
+.BR help:/kiosktool/
+directly into konqueror or you can run
+.BR "`khelpcenter help:/kiosktool/'"
+from the command\-line.
+.br
+.SH AUTHORS
+.nf
+Waldo Bastian <bastian@kde.org>
+.br
+
diff --git a/doc/nl/CMakeLists.txt b/doc/nl/CMakeLists.txt
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/doc/nl/CMakeLists.txt
@@ -0,0 +1 @@
+
diff --git a/doc/pt/CMakeLists.txt b/doc/pt/CMakeLists.txt
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/doc/pt/CMakeLists.txt
@@ -0,0 +1 @@
+
diff --git a/doc/sv/CMakeLists.txt b/doc/sv/CMakeLists.txt
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/doc/sv/CMakeLists.txt
@@ -0,0 +1 @@
+
diff --git a/kiosktool/CMakeLists.txt b/kiosktool/CMakeLists.txt
new file mode 100644
index 0000000..3ac1c09
--- /dev/null
+++ b/kiosktool/CMakeLists.txt
@@ -0,0 +1,93 @@
+add_subdirectory( kcms )
+
+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}
+)
+
+
+##### kiosktool (executable)
+
+tde_add_executable( ${PROJECT_NAME} AUTOMOC
+
+ SOURCES
+ main.cpp
+ kioskgui.cpp
+ kioskdata.cpp
+ kioskrun.cpp
+ mainview.ui
+ profileSelectionPage_ui.ui
+ profilePropsPage.cpp
+ profilePropsPage_ui.ui
+ pageWidget.cpp
+ component.cpp
+ desktopComponent.cpp
+ menueditComponent.cpp
+ screensaverComponent.cpp
+ panelComponent.cpp
+ filetypeeditComponent.cpp
+ componentSelectionPage.cpp
+ componentSelectionPage_ui.ui
+ componentPage.cpp
+ componentPage_ui.ui
+ userManagement.cpp
+ userManagement_ui.ui
+ userManagementGroup_ui.ui
+ userManagementUser_ui.ui
+ kioskConfigDialog.cpp
+ kioskConfigDialog_ui.ui
+ kiosksync.cpp
+ LINK
+ tdecore-shared
+ tdeui-shared
+ tdeio-shared
+
+ DESTINATION ${BIN_INSTALL_DIR}
+)
+
+
+##### kiosktool-tdedirs (executable)
+
+tde_add_executable( kiosktool-tdedirs AUTOMOC
+ SOURCES kiosktool-tdedirs.cpp
+ LINK tdecore-shared
+ DESTINATION ${BIN_INSTALL_DIR}
+)
+
+
+##### icons
+
+tde_install_icons( ${PROJECT_NAME} )
+
+
+##### other data
+
+install(
+ FILES
+ kiosktoolui.rc
+ kiosk_data.xml
+ caption.png
+ background.png
+ logo.png
+ caption-da.png
+ caption-empty.png
+ caption-et.png
+ caption-pt.png
+ caption-pt_BR.png
+ caption-sv.png
+
+ DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}
+)
+
+install(
+ FILES kiosktool.desktop
+ DESTINATION ${XDG_APPS_INSTALL_DIR}
+)
diff --git a/kiosktool/kcms/CMakeLists.txt b/kiosktool/kcms/CMakeLists.txt
new file mode 100644
index 0000000..4d25def
--- /dev/null
+++ b/kiosktool/kcms/CMakeLists.txt
@@ -0,0 +1 @@
+add_subdirectory( autostart )
diff --git a/kiosktool/kcms/autostart/CMakeLists.txt b/kiosktool/kcms/autostart/CMakeLists.txt
new file mode 100644
index 0000000..722a583
--- /dev/null
+++ b/kiosktool/kcms/autostart/CMakeLists.txt
@@ -0,0 +1,34 @@
+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}
+)
+
+
+##### kcm_autostart (kpart)
+
+tde_add_kpart( kcm_autostart AUTOMOC
+ SOURCES kcmautostart.cpp
+ LINK tdeio-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### icons
+
+tde_install_icons( autostart )
+
+
+##### other data
+
+install(
+ FILES kcmautostart.desktop
+ DESTINATION ${XDG_APPS_INSTALL_DIR}
+)
diff --git a/po/CMakeLists.txt b/po/CMakeLists.txt
new file mode 100644
index 0000000..6d0aa9f
--- /dev/null
+++ b/po/CMakeLists.txt
@@ -0,0 +1 @@
+tde_auto_add_subdirectories( )
diff --git a/po/bg/CMakeLists.txt b/po/bg/CMakeLists.txt
new file mode 100644
index 0000000..4902d61
--- /dev/null
+++ b/po/bg/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG bg )
diff --git a/po/br/CMakeLists.txt b/po/br/CMakeLists.txt
new file mode 100644
index 0000000..cd1ca2d
--- /dev/null
+++ b/po/br/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG br )
diff --git a/po/ca/CMakeLists.txt b/po/ca/CMakeLists.txt
new file mode 100644
index 0000000..d5a5b2f
--- /dev/null
+++ b/po/ca/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG ca )
diff --git a/po/cs/CMakeLists.txt b/po/cs/CMakeLists.txt
new file mode 100644
index 0000000..a0791b0
--- /dev/null
+++ b/po/cs/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG cs )
diff --git a/po/cy/CMakeLists.txt b/po/cy/CMakeLists.txt
new file mode 100644
index 0000000..867daab
--- /dev/null
+++ b/po/cy/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG cy )
diff --git a/po/da/CMakeLists.txt b/po/da/CMakeLists.txt
new file mode 100644
index 0000000..aae4d18
--- /dev/null
+++ b/po/da/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG da )
diff --git a/po/de/CMakeLists.txt b/po/de/CMakeLists.txt
new file mode 100644
index 0000000..5770e14
--- /dev/null
+++ b/po/de/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG de )
diff --git a/po/en_GB/CMakeLists.txt b/po/en_GB/CMakeLists.txt
new file mode 100644
index 0000000..16d9e14
--- /dev/null
+++ b/po/en_GB/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG en_GB )
diff --git a/po/es/CMakeLists.txt b/po/es/CMakeLists.txt
new file mode 100644
index 0000000..041b7a3
--- /dev/null
+++ b/po/es/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG es )
diff --git a/po/et/CMakeLists.txt b/po/et/CMakeLists.txt
new file mode 100644
index 0000000..8128397
--- /dev/null
+++ b/po/et/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG et )
diff --git a/po/fr/CMakeLists.txt b/po/fr/CMakeLists.txt
new file mode 100644
index 0000000..f7eefec
--- /dev/null
+++ b/po/fr/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG fr )
diff --git a/po/ga/CMakeLists.txt b/po/ga/CMakeLists.txt
new file mode 100644
index 0000000..02707f7
--- /dev/null
+++ b/po/ga/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG ga )
diff --git a/po/is/CMakeLists.txt b/po/is/CMakeLists.txt
new file mode 100644
index 0000000..b485046
--- /dev/null
+++ b/po/is/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG is )
diff --git a/po/it/CMakeLists.txt b/po/it/CMakeLists.txt
new file mode 100644
index 0000000..c54b21c
--- /dev/null
+++ b/po/it/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG it )
diff --git a/po/lt/CMakeLists.txt b/po/lt/CMakeLists.txt
new file mode 100644
index 0000000..21b6004
--- /dev/null
+++ b/po/lt/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG lt )
diff --git a/po/mt/CMakeLists.txt b/po/mt/CMakeLists.txt
new file mode 100644
index 0000000..73ec0cf
--- /dev/null
+++ b/po/mt/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG mt )
diff --git a/po/nl/CMakeLists.txt b/po/nl/CMakeLists.txt
new file mode 100644
index 0000000..66088c7
--- /dev/null
+++ b/po/nl/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG nl )
diff --git a/po/pt/CMakeLists.txt b/po/pt/CMakeLists.txt
new file mode 100644
index 0000000..1001c25
--- /dev/null
+++ b/po/pt/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG pt )
diff --git a/po/pt_BR/CMakeLists.txt b/po/pt_BR/CMakeLists.txt
new file mode 100644
index 0000000..91fae60
--- /dev/null
+++ b/po/pt_BR/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG pt_BR )
diff --git a/po/ro/CMakeLists.txt b/po/ro/CMakeLists.txt
new file mode 100644
index 0000000..d298a5a
--- /dev/null
+++ b/po/ro/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG ro )
diff --git a/po/ru/CMakeLists.txt b/po/ru/CMakeLists.txt
new file mode 100644
index 0000000..ec8f0d0
--- /dev/null
+++ b/po/ru/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG ru )
diff --git a/po/sr/CMakeLists.txt b/po/sr/CMakeLists.txt
new file mode 100644
index 0000000..aecc615
--- /dev/null
+++ b/po/sr/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG sr )
diff --git a/po/sr@Latn/CMakeLists.txt b/po/sr@Latn/CMakeLists.txt
new file mode 100644
index 0000000..862bc61
--- /dev/null
+++ b/po/sr@Latn/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG sr@Latn )
diff --git a/po/sv/CMakeLists.txt b/po/sv/CMakeLists.txt
new file mode 100644
index 0000000..c26f445
--- /dev/null
+++ b/po/sv/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG sv )
diff --git a/po/ta/CMakeLists.txt b/po/ta/CMakeLists.txt
new file mode 100644
index 0000000..3818233
--- /dev/null
+++ b/po/ta/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG ta )
diff --git a/po/tr/CMakeLists.txt b/po/tr/CMakeLists.txt
new file mode 100644
index 0000000..b968c8e
--- /dev/null
+++ b/po/tr/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG tr )
diff --git a/po/xx/CMakeLists.txt b/po/xx/CMakeLists.txt
new file mode 100644
index 0000000..100618f
--- /dev/null
+++ b/po/xx/CMakeLists.txt
@@ -0,0 +1 @@
+tde_create_translation( LANG xx )