add build scripts

This commit is contained in:
Félix Dorn 2025-06-19 13:00:16 +02:00
parent c3ee96429c
commit 1d2190d68e
26 changed files with 1327 additions and 6 deletions

17
scripts/postproc-win.sh Executable file
View file

@ -0,0 +1,17 @@
#!/bin/bash
#
# postproc-win.sh 1.0.1
#
# Windows build script post-processor.
#
# This is called from build-win.sh after the app-bundle has been built.
# Use this e.g. to copy additional resources to the app-bundle.
# You can use all variables from the main script here.
#
# (c)2023 Harald Schneider - marketmix.com
if [ $APP_ARCH = "x64" ]; then
:
# Handle Intel releases here
# cp SOME_FILE "${APP_DST}/"
fi