From b10a59661ec440af3b975ae4bd5f2283b7e2662c Mon Sep 17 00:00:00 2001 From: iTrooz_ Date: Fri, 25 Nov 2022 10:37:31 +0100 Subject: [PATCH] build: Tell users patterns are being downloaded (#820) * Tell users patterns are being downloaded * Improved log message Co-authored-by: Nik --- cmake/build_helpers.cmake | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cmake/build_helpers.cmake b/cmake/build_helpers.cmake index 511e7865f..d47ca6f90 100644 --- a/cmake/build_helpers.cmake +++ b/cmake/build_helpers.cmake @@ -390,7 +390,9 @@ function(downloadImHexPatternsFiles dest) GIT_TAG master ) + message(STATUS "Downloading ImHex-Patterns repo branch ${PATTERNS_BRANCH}...") FetchContent_Populate(imhex_patterns) + message(STATUS "Finished downloading ImHex-Patterns") else () # Maybe patterns are cloned to a subdirectory @@ -426,4 +428,4 @@ macro(setUninstallTarget) add_custom_target(uninstall COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake) endif() -endmacro() \ No newline at end of file +endmacro()