1
0

INSTALL.md.in 849 B

1234567891011121314151617181920212223242526
  1. # Using this package
  2. This package contains @<@PROJECT_NAME@>@ built for the mingw-w64 toolchain.
  3. The files for 32-bit architecture are in i686-w64-mingw32
  4. The files for 64-bit architecture are in x86_64-w64-mingw32
  5. You can install them to another location, just type `make` for help.
  6. To use this package, point your include path at _arch_/include and your library path at _arch_/lib, link with the @<@PROJECT_NAME@>@ library and copy _arch_/bin/@<@PROJECT_NAME@>@.dll next to your executable.
  7. e.g.
  8. ```sh
  9. gcc -o hello.exe hello.c -Ix86_64-w64-mingw32/include -Lx86_64-w64-mingw32/lib -l@<@PROJECT_NAME@>@
  10. cp x86_64-w64-mingw32/bin/physfs.dll .
  11. ./hello.exe
  12. ```
  13. # Documentation
  14. An API reference, tutorials, and additional documentation is available at:
  15. https://wiki.icculus.org/PhysicsFS3/QuickReference
  16. https://icculus.org/physfs/docs/html/