#!/bin/bash # Dart Build Script SCRIPT_DIR="$(cd "$(dirname "$0")/.." && pwd)" cd "$SCRIPT_DIR" echo "=== Dart Build ===" echo "" # Check for dart if ! command -v dart &> /dev/null; then echo "✗ Dart-kompilator hittades inte!" echo " Installera Dart: brew install dart" exit 1 fi echo "Använder: dart" # Compile to native executable if dart compile exe src/print_hej.dart -o bin/print_hej 2>&1; then echo "✓ Kompilering lyckades!" echo " Executable: bin/print_hej" echo "" echo "För att köra:" echo " ./bin/print_hej " else echo "✗ Kompilering misslyckades!" exit 1 fi