| 1234567891011121314151617181920212223242526 |
- # Using this package
- This package contains @<@PROJECT_NAME@>@ built for the mingw-w64 toolchain.
- The files for 32-bit architecture are in i686-w64-mingw32
- The files for 64-bit architecture are in x86_64-w64-mingw32
- You can install them to another location, just type `make` for help.
- 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.
- e.g.
- ```sh
- gcc -o hello.exe hello.c -Ix86_64-w64-mingw32/include -Lx86_64-w64-mingw32/lib -l@<@PROJECT_NAME@>@
- cp x86_64-w64-mingw32/bin/physfs.dll .
- ./hello.exe
- ```
- # Documentation
- An API reference, tutorials, and additional documentation is available at:
- https://wiki.icculus.org/PhysicsFS3/QuickReference
- https://icculus.org/physfs/docs/html/
|