extra material and simulink creation script

This commit is contained in:
Mikkeli Matlock
2026-01-25 22:49:13 +09:00
parent 1b8c788fec
commit d7a1f2fabd
9 changed files with 227 additions and 59 deletions

View File

@@ -36,6 +36,15 @@ echo "Cross-compiler: $CXX"
cd "$UI_DIR"
# Prepare assets (fonts, images)
PREPARE_SCRIPT="$SCRIPT_DIR/prepare_assets.sh"
if [ -x "$PREPARE_SCRIPT" ]; then
echo "Preparing assets..."
"$PREPARE_SCRIPT"
else
echo "WARNING: $PREPARE_SCRIPT not found or not executable"
fi
# Initialize elinux project if not already configured
if [ ! -d "elinux" ]; then
echo "Initializing elinux project structure..."