From 24fa4ba6a39851f833b6374381238c5435a8e269 Mon Sep 17 00:00:00 2001 From: "Bernhard M. Wiedemann" Date: Sun, 20 Mar 2016 16:22:52 +0100 Subject: [PATCH] dont add timestamps to created images This allows for reproducible builds --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 85f9236df..27b08c8b1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -297,7 +297,7 @@ macro(a_icon_convert match replacement input) set(ALL_ICONS ${ALL_ICONS} ${output}) add_custom_command( - COMMAND ${CONVERT_EXECUTABLE} ${input} ${ARGN} ${output} + COMMAND ${CONVERT_EXECUTABLE} ${input} -strip ${ARGN} ${output} OUTPUT ${output} DEPENDS ${input} VERBATIM)