1
0
zrcadlo https://git.tukaani.org/xz.git synchronizováno 2025-10-16 14:13:26 +00:00

CMake: Fix appending to CMAKE_RC_FLAGS.

It's a string, not a list. It only worked when the variable was empty.

Thanks to Iouri Kharon.
Tento commit je obsažen v:
Lasse Collin 2023-01-10 08:29:32 +02:00
rodič 6e652ceb18
revize 5e34774c31

Zobrazit soubor

@ -97,7 +97,7 @@ if(WIN32 AND CMAKE_C_COMPILER_ID STREQUAL "GNU")
# Use workarounds with GNU windres. The \x20 in PACKAGE_NAME works
# with gcc too so we don't need to worry how to pass different flags
# to windres and gcc.
list(APPEND CMAKE_RC_FLAGS "--use-temp-file")
string(APPEND CMAKE_RC_FLAGS " --use-temp-file")
set(PACKAGE_NAME "XZ\\x20Utils")
else()
# Elsewhere a space is safe. This also keeps things compatible with