From e1fb40ab837c4ab8f31e625f4290e809693a69fe Mon Sep 17 00:00:00 2001 From: Clifford Yapp <238416+starseeker@users.noreply.github.com> Date: Tue, 21 May 2024 16:19:29 -0400 Subject: [PATCH] Provide feedback on what is being checked --- CMake/DllTypeCheck.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/CMake/DllTypeCheck.cmake b/CMake/DllTypeCheck.cmake index f24abb4a..e07708ac 100644 --- a/CMake/DllTypeCheck.cmake +++ b/CMake/DllTypeCheck.cmake @@ -48,6 +48,7 @@ function(DllTypeCheck btype dlldir) file(GLOB dll_files RELATIVE "${dlldir}" "${dlldir}/*.dll") set(non_match 0) foreach(dlf ${dll_files}) + message("Checking ${dlf}") # dumpbin doesn't like CMake style paths file(TO_NATIVE_PATH "${dlf}" TBFN) # https://stackoverflow.com/a/28304716/2037687