summaryrefslogtreecommitdiff
path: root/media
diff options
context:
space:
mode:
authorglx22 <glx@openttd.org>2021-03-09 18:00:37 +0100
committerLoïc Guilloux <glx22@users.noreply.github.com>2021-03-09 22:42:25 +0100
commit35a228f78f5b64f57e93ce8d108cec98d805b469 (patch)
tree694535c3673a923a3c2481f81b53fb9b134a1028 /media
parentb5770acd50215744b5f9649b1ba4386be4b452c5 (diff)
downloadopenttd-35a228f78f5b64f57e93ce8d108cec98d805b469.tar.xz
Add: [CMake] Install menu and media files
Diffstat (limited to 'media')
-rw-r--r--media/CMakeLists.txt98
-rw-r--r--media/openttd.desktop (renamed from media/openttd.desktop.in)10
-rw-r--r--media/openttd.desktop.filter.awk11
-rw-r--r--media/openttd.desktop.translation.awk13
4 files changed, 103 insertions, 29 deletions
diff --git a/media/CMakeLists.txt b/media/CMakeLists.txt
new file mode 100644
index 000000000..17b10b5ec
--- /dev/null
+++ b/media/CMakeLists.txt
@@ -0,0 +1,98 @@
+add_subdirectory(baseset)
+
+add_library(media
+ INTERFACE
+)
+add_library(openttd::media ALIAS media)
+
+if(NOT UNIX OR APPLE)
+ return()
+endif()
+
+set(MEDIA_PNG_SOURCE_FILES
+ ${CMAKE_CURRENT_SOURCE_DIR}/openttd.16.png
+ ${CMAKE_CURRENT_SOURCE_DIR}/openttd.32.png
+ ${CMAKE_CURRENT_SOURCE_DIR}/openttd.48.png
+ ${CMAKE_CURRENT_SOURCE_DIR}/openttd.64.png
+ ${CMAKE_CURRENT_SOURCE_DIR}/openttd.128.png
+ ${CMAKE_CURRENT_SOURCE_DIR}/openttd.256.png
+)
+
+# Walk over all the png files, and generate a command to copy them
+foreach(MEDIA_PNG_SOURCE_FILE IN LISTS MEDIA_PNG_SOURCE_FILES)
+ get_filename_component(MEDIA_PNG_FILE_NAME "${MEDIA_PNG_SOURCE_FILE}" NAME)
+ string(REGEX REPLACE "[^.]+.([0-9]*).*" "${CMAKE_CURRENT_BINARY_DIR}/icons/hicolor/\\1x\\1/apps/${BINARY_NAME}.png" MEDIA_PNG_BINARY_FILE "${MEDIA_PNG_FILE_NAME}")
+
+ add_custom_command(OUTPUT ${MEDIA_PNG_BINARY_FILE}
+ COMMAND ${CMAKE_COMMAND} -E copy
+ ${MEDIA_PNG_SOURCE_FILE}
+ ${MEDIA_PNG_BINARY_FILE}
+ MAIN_DEPENDENCY ${MEDIA_PNG_SOURCE_FILE}
+ WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
+ COMMENT "Copying ${MEDIA_PNG_FILE_NAME} file"
+ )
+
+ list(APPEND MEDIA_BINARY_FILES ${MEDIA_PNG_BINARY_FILE})
+endforeach()
+
+set(MEDIA_XPM_SOURCE_FILES
+ ${CMAKE_CURRENT_SOURCE_DIR}/openttd.32.xpm
+ ${CMAKE_CURRENT_SOURCE_DIR}/openttd.64.xpm
+)
+
+# Walk over all the xpm files, and generate a command to copy them
+foreach(MEDIA_XPM_SOURCE_FILE IN LISTS MEDIA_XPM_SOURCE_FILES)
+ get_filename_component(MEDIA_XPM_FILE_NAME "${MEDIA_XPM_SOURCE_FILE}" NAME)
+ get_filename_component(MEDIA_XPM_FILE_EXT "${MEDIA_XPM_FILE_NAME}" EXT)
+ set(MEDIA_XPM_BINARY_FILE "${CMAKE_CURRENT_BINARY_DIR}/pixmaps/${BINARY_NAME}${MEDIA_XPM_FILE_EXT}")
+
+ add_custom_command(OUTPUT ${MEDIA_XPM_BINARY_FILE}
+ COMMAND ${CMAKE_COMMAND} -E copy
+ ${MEDIA_XPM_SOURCE_FILE}
+ ${MEDIA_XPM_BINARY_FILE}
+ MAIN_DEPENDENCY ${MEDIA_XPM_SOURCE_FILE}
+ WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
+ COMMENT "Copying ${MEDIA_XPM_FILE_NAME} file"
+ )
+
+ list(APPEND MEDIA_BINARY_FILES ${MEDIA_XPM_BINARY_FILE})
+endforeach()
+
+# Create a new target which copies media files
+add_custom_target(media_files
+ DEPENDS
+ ${MEDIA_BINARY_FILES}
+)
+
+add_dependencies(media
+ media_files
+)
+
+get_target_property(LANG_SOURCE_FILES language_files LANG_SOURCE_FILES)
+
+set(DESKTOP_BINARY_NAME ${BINARY_NAME}.desktop)
+
+add_custom_command_timestamp(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${DESKTOP_BINARY_NAME}
+ COMMAND ${CMAKE_COMMAND}
+ -DDESKTOP_SOURCE_FILE=${CMAKE_CURRENT_SOURCE_DIR}/openttd.desktop
+ -DDESKTOP_BINARY_FILE=${CMAKE_CURRENT_BINARY_DIR}/${DESKTOP_BINARY_NAME}
+ -DBINARY_NAME=${BINARY_NAME}
+ -P ${CMAKE_SOURCE_DIR}/cmake/scripts/Desktop.cmake
+ --
+ ${LANG_SOURCE_FILES}
+ MAIN_DEPENDENCY ${CMAKE_CURRENT_SOURCE_DIR}/openttd.desktop
+ DEPENDS ${LANG_SOURCE_FILES}
+ ${CMAKE_SOURCE_DIR}/cmake/scripts/Desktop.cmake
+ WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
+ COMMENT "Generating desktop file"
+)
+
+# Create a new target which generates desktop file
+add_custom_target_timestamp(desktop_file
+ DEPENDS
+ ${CMAKE_CURRENT_BINARY_DIR}/${DESKTOP_BINARY_NAME}
+)
+
+add_dependencies(media
+ desktop_file
+)
diff --git a/media/openttd.desktop.in b/media/openttd.desktop
index 4a251114c..e0aef004c 100644
--- a/media/openttd.desktop.in
+++ b/media/openttd.desktop
@@ -2,10 +2,10 @@
[Desktop Entry]
Type=Application
Version=1.0
-Name=!!MENU_NAME!!
-Icon=!!TTD!!
-Exec=!!TTD!!
+Name=OpenTTD
+Icon=${BINARY_NAME}
+Exec=${BINARY_NAME}
Terminal=false
-Categories=!!MENU_GROUP!!
-Comment=A clone of Transport Tycoon Deluxe
+Categories=Game;
Keywords=game;simulation;transport;tycoon;deluxe;economics;multiplayer;money;train;ship;bus;truck;aircraft;cargo;
+@Comment_STR_DESKTOP_SHORTCUT_COMMENT@
diff --git a/media/openttd.desktop.filter.awk b/media/openttd.desktop.filter.awk
deleted file mode 100644
index 125e21b0d..000000000
--- a/media/openttd.desktop.filter.awk
+++ /dev/null
@@ -1,11 +0,0 @@
-# This file is part of OpenTTD.
-# OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
-# OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
-
-#
-# Awk script to automatically remove duplicate Comment[i]= lines
-#
-
-BEGIN { FS = "="; last = "" }
-{ if (last != $1) { print $0 }; last = $1 }
diff --git a/media/openttd.desktop.translation.awk b/media/openttd.desktop.translation.awk
deleted file mode 100644
index 3187f9ddf..000000000
--- a/media/openttd.desktop.translation.awk
+++ /dev/null
@@ -1,13 +0,0 @@
-# This file is part of OpenTTD.
-# OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
-# OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
-
-#
-# Awk script to automatically generate a comment lines for
-# a translated desktop shortcut. If it does not exist there
-# is no output.
-#
-
-/##isocode/ { lang = $2; next }
-/STR_DESKTOP_SHORTCUT_COMMENT/ { sub("^[^:]*:", "", $0); print "Comment[" lang "]=" $0; sub("_.*", "", lang); print "Comment[" lang "]=" $0; next}