Prototype game engine for Heroes of Might & Magic, featuring a gameplay plot-twist...
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

13 lignes
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