Prototype game engine for Heroes of Might & Magic, featuring a gameplay plot-twist...
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
158B

  1. #!/bin/bash
  2. set -xe
  3. cd source
  4. gnatmake -g -O3 -fstack-check -c main.adb
  5. gnatbind main.ali
  6. gnatlink -o xhads main.ali -lraylib
  7. mv xhads ../xhads
  8. cd ..
  9. exit