Ada bindings for Raylib 5.1 library.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

15 rindas
391B

  1. #!/bin/bash
  2. set -xe
  3. # Find your own file path for this, I rely on GCC and GNAT:
  4. # $ gcc -print-libgcc-file-name
  5. # Run the command above to get the following output:
  6. # /usr/lib/gcc/x86_64-linux-gnu/8/libgcc.a
  7. # Then, add 'adainclude' and file name to the file path.
  8. # Sorry, I don't know a better way to do this...
  9. cp raylib.ads /usr/lib/gcc/x86_64-linux-gnu/8/adainclude/raylib.ads
  10. exit