diff options
author | Matthijs Kooijman <matthijs@stdin.nl> | 2022-01-05 13:24:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-05 13:24:35 +0100 |
commit | 5777649ac4d7d398d23291dd54dda60169d01ade (patch) | |
tree | c43e8b58b14ad448d1df291b2616156cbbf621af | |
parent | ffa688a432713c072c175173802757c7a1f0519c (diff) | |
download | openttd-5777649ac4d7d398d23291dd54dda60169d01ade.tar.xz |
Fix: [CMake] openttd.32.bmp wasn't installed but used by SDL (#9772)
This file is used to set the SDL application icon, but it was no longer
installed since the switch to CMake.
-rw-r--r-- | media/baseset/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/media/baseset/CMakeLists.txt b/media/baseset/CMakeLists.txt index 48aa443a5..1bf16ec06 100644 --- a/media/baseset/CMakeLists.txt +++ b/media/baseset/CMakeLists.txt @@ -17,6 +17,7 @@ set(BASESET_OTHER_SOURCE_FILES ${CMAKE_CURRENT_SOURCE_DIR}/openttd.grf ${CMAKE_CURRENT_SOURCE_DIR}/opntitle.dat ${CMAKE_CURRENT_SOURCE_DIR}/orig_extra.grf + ${CMAKE_CURRENT_SOURCE_DIR}/../openttd.32.bmp ) # Done by the subdirectories, if nforenum / grfcodec is installed |