raylib-ada/compile.sh

10 lines
100 B
Bash

#!/bin/bash
set -xe
gnatmake -c window.adb
gnatbind window.ali
gnatlink window.ali -lraylib
exit