INSTALL.txt 694 B

12345678910111213141516171819202122232425
  1. The 32-bit files are in i686-w64-mingw32
  2. The 64-bit files are in x86_64-w64-mingw32
  3. To install SDL for 32-bit x86 executables (i686):
  4. make install-i686
  5. To install SDL for 64-bit x86 executables (x86_64):
  6. make install-x86_64
  7. To install both:
  8. make install-all
  9. Use DESTDIR to change the target location
  10. mkdir $HOME/mingw32-prefix
  11. make install-i686 DESTDIR=$HOME/mingw32-prefix
  12. Look at the example programs in ./examples, and check out online documentation:
  13. https://wiki.libsdl.org/SDL3/FrontPage
  14. Join the SDL discourse server if you want to join the community:
  15. https://discourse.libsdl.org/
  16. That's it!
  17. Sam Lantinga <[email protected]>