initialize standalone OpenFL application structure with essential files and configurations
This commit is contained in:
14
standalone-openfl-app/compile.sh
Normal file
14
standalone-openfl-app/compile.sh
Normal file
@@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Navigate to the project directory
|
||||
cd "$(dirname "$0")"
|
||||
|
||||
# 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
|
||||
Reference in New Issue
Block a user