mirror of
https://github.com/transmission/transmission
synced 2025-01-03 05:25:52 +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:
parent
94be7dbd9b
commit
6903f24ea8
1 changed files with 1 additions and 1 deletions
2
dist/msi/UtilityFunctions.cmake
vendored
2
dist/msi/UtilityFunctions.cmake
vendored
|
@ -7,7 +7,7 @@ function(png2ico OUTPUT_FILE)
|
||||||
|
|
||||||
add_custom_command(
|
add_custom_command(
|
||||||
OUTPUT "${OUTPUT_FILE}"
|
OUTPUT "${OUTPUT_FILE}"
|
||||||
COMMAND convert ${ARGN} "${OUTPUT_FILE}"
|
COMMAND magick convert ${ARGN} "${OUTPUT_FILE}"
|
||||||
DEPENDS ${ARGN})
|
DEPENDS ${ARGN})
|
||||||
|
|
||||||
list(APPEND ${OUTPUT_VAR} "${OUTPUT_FILE}")
|
list(APPEND ${OUTPUT_VAR} "${OUTPUT_FILE}")
|
||||||
|
|
Loading…
Reference in a new issue