This commit is contained in:
2026-08-06 00:29:37 +02:00
parent 31d458f8b7
commit fedc18c3ca
19 changed files with 779 additions and 131 deletions

View File

@@ -1,15 +1,9 @@
#!/bin/bash
set -e
# Compile the project using the Haxe compiler with the specified build.hxml configuration
haxe build.hxml
# Check if the compilation was successful
if [ $? -eq 0 ]; then
echo "Compilation successful!"
else
echo "Compilation failed!"
fi
# Run the compiled project
# We need to run ApplicationMain-debug within the bin/cpp directory as the current working directory
(cd ./bin/cpp; ./ApplicationMain-debug)
# Run beside the staged manifest, assets and native libraries.
(cd ./bin/cpp; ./ApplicationMain)