1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-19 04:29:09 +00:00

Add: [CMake] Install menu and media files

This commit is contained in:
glx22
2021-03-09 18:00:37 +01:00
committed by Loïc Guilloux
parent b5770acd50
commit 35a228f78f
7 changed files with 177 additions and 32 deletions

98
media/CMakeLists.txt Normal file
View File

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

View File

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

View File

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

View File

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