Ada bindings for Raylib 5.1 library.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

15 líneas
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