mirror of
https://github.com/transmission/transmission.git
synced 2026-02-15 07:26:49 +00:00
Use magick convert instead of convert
This adjusts to the new ImageMagick command naming (way to go, GraphicsMagick had this from the beginning) and avoids confusion with same-named windows utility which serves completely different purpose.
This commit is contained in:
2
dist/msi/UtilityFunctions.cmake
vendored
2
dist/msi/UtilityFunctions.cmake
vendored
@@ -7,7 +7,7 @@ function(png2ico OUTPUT_FILE)
|
||||
|
||||
add_custom_command(
|
||||
OUTPUT "${OUTPUT_FILE}"
|
||||
COMMAND convert ${ARGN} "${OUTPUT_FILE}"
|
||||
COMMAND magick convert ${ARGN} "${OUTPUT_FILE}"
|
||||
DEPENDS ${ARGN})
|
||||
|
||||
list(APPEND ${OUTPUT_VAR} "${OUTPUT_FILE}")
|
||||
|
||||
Reference in New Issue
Block a user