From d8d25de0d0af39c6e6bec3274336fec7e0a1478a Mon Sep 17 00:00:00 2001 From: Aiken Harris Date: Wed, 9 Jul 2025 17:40:57 +0200 Subject: [PATCH] Show windres version and path --- scripts/xtclib.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/xtclib.ps1 b/scripts/xtclib.ps1 index 8890bac..c8a7a88 100644 --- a/scripts/xtclib.ps1 +++ b/scripts/xtclib.ps1 @@ -105,6 +105,7 @@ function version { Write-Host Write-Host "LLVM/Clang Compiler: $(clang --version | Select-String -Pattern "version (\d+\.\d+\.\d+)" | ForEach-Object { $_.Matches.Groups[1].Value }) ($($(Get-Command clang).Source))" Write-Host "LLVM/LLD Linker: $(lld-link --version | Select-String -Pattern "(\d+\.\d+\.\d+)" | ForEach-Object { $_.Matches.Groups[1].Value }) ($($(Get-Command lld-link).Source))" + Write-Host "LLVM Resource Compiler: $(windres --version | Select-String -Pattern "version (\d+\.\d+\.\d+)" | ForEach-Object { $_.Matches.Groups[1].Value }) ($($(Get-Command windres).Source))" Write-Host "Wine IDL Compiler: $(widl -V | Select-String -Pattern "version (\d+\.\d+)" | ForEach-Object { $_.Matches.Groups[1].Value }) ($($(Get-Command widl).Source))" Write-Host "Wine Message Compiler: $(wmc -V | Select-String -Pattern "version (\d+\.\d+)" | ForEach-Object { $_.Matches.Groups[1].Value }) ($($(Get-Command wmc).Source))" Write-Host "Wine Resource Compiler: $(wrc --version | Select-String -Pattern "version (\d+\.\d+)" | ForEach-Object { $_.Matches.Groups[1].Value }) ($($(Get-Command wrc).Source))"