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

25
scripts/preproc-linux.sh Executable file
View file

@ -0,0 +1,25 @@
#!/bin/bash
#
# preproc-linux.sh 1.0.1
#
# Linux build script pre-processor.
#
# This is called from build-win.sh before the app-bundle has been built.
# Use this e.g. to preoare platform specific resources.
#
# (c)2024 Harald Schneider - marketmix.com
if [ $APP_ARCH = "x64" ]; then
:
# Handle Intel releases here
fi
if [ $APP_ARCH = "arm64" ]; then
:
# Handle ARM releases here
fi
if [ $APP_ARCH = "armhf" ]; then
:
# Handle ARM hard_float releases here.
fi