From 239cd62103d617f0b2a9d58527843417a0db6ab4 Mon Sep 17 00:00:00 2001 From: Weicao-CatilGrass <1992414357@qq.com> Date: Mon, 9 Mar 2026 14:48:15 +0800 Subject: Add Win32 GUI for butck_gui.exe --- gui/win32/scripts/run.ps1 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 gui/win32/scripts/run.ps1 (limited to 'gui/win32/scripts/run.ps1') diff --git a/gui/win32/scripts/run.ps1 b/gui/win32/scripts/run.ps1 new file mode 100644 index 0000000..a8f50e8 --- /dev/null +++ b/gui/win32/scripts/run.ps1 @@ -0,0 +1,10 @@ +$originalLocation = Get-Location +$scriptPath = Split-Path -Parent $MyInvocation.MyCommand.Path +Set-Location $scriptPath + +$exePath = "..\build\bin\butck_gui.exe" +if (Test-Path $exePath) { + & $exePath +} + +Set-Location $originalLocation -- cgit