9 lines
250 B
Bash
Executable File
9 lines
250 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Compile the project using the Haxe compiler with the specified build.hxml configuration
|
|
haxe build.hxml
|
|
|
|
# Run the compiled project
|
|
# Run beside the staged manifest, assets and native libraries.
|
|
(cd ./bin/cpp; ./ApplicationMain) |