Ada bindings for Raylib 5.1 library.
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.

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