From cc4f7a9ad8605cf8b1fcde159d9319d490434ffc Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Tue, 12 Jan 2016 17:14:58 -0800 Subject: [PATCH] add message if executable signing enabled --- cmake/macros/OptionalWinExecutableSigning.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmake/macros/OptionalWinExecutableSigning.cmake b/cmake/macros/OptionalWinExecutableSigning.cmake index 2ae6ae59fd..f0be81c996 100644 --- a/cmake/macros/OptionalWinExecutableSigning.cmake +++ b/cmake/macros/OptionalWinExecutableSigning.cmake @@ -20,6 +20,8 @@ macro(optional_win_executable_signing) message(FATAL_ERROR "Code signing of executables was requested but signtool.exe could not be found.") endif () + message(STATUS "Executable for ${TARGET_NAME} will be signed with SignTool.") + if (NOT EXECUTABLE_PATH) set(EXECUTABLE_PATH "$") endif ()