From d212c97624baa263eb607fdd677198e5f47b21c2 Mon Sep 17 00:00:00 2001 From: reuk Date: Tue, 30 May 2023 12:22:21 +0100 Subject: [PATCH] CMake: Improve error message when juceaide fails --- extras/Build/CMake/JUCEUtils.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/Build/CMake/JUCEUtils.cmake b/extras/Build/CMake/JUCEUtils.cmake index d920e6278a..e806c49afb 100644 --- a/extras/Build/CMake/JUCEUtils.cmake +++ b/extras/Build/CMake/JUCEUtils.cmake @@ -543,7 +543,7 @@ function(_juce_execute_juceaide) ERROR_VARIABLE output) if(result_variable) - message(FATAL_ERROR "Running juceaide failed:\n${output}") + message(FATAL_ERROR "Running juceaide failed:\ncommand: ${juceaide_location} ${ARGN}\noutput: ${output}") endif() endfunction()