Ada bindings for Raylib 5.1 library.
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

15 рядки
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