build: Include a launcher shell script with the executables

Closes #2528
This commit is contained in:
WerWolv
2025-11-30 12:02:48 +01:00
parent 34971162cb
commit ebee8ff0a6
3 changed files with 45 additions and 7 deletions

3
dist/cli/imhex.bat vendored Normal file
View File

@@ -0,0 +1,3 @@
@echo off
start "" "%~dp0..\imhex.exe" %*

5
dist/cli/imhex.sh vendored Normal file
View File

@@ -0,0 +1,5 @@
#!/bin/sh
script_path=$(readlink -f "$0")
script_dir=$(dirname "${script_path}")
"${script_dir}/../imhex" "$@" > /dev/null 2>&1 &