yuzu/externals/SDL/INSTALL.txt

42 lines
1.1 KiB
Plaintext
Raw Normal View History

2021-04-18 07:35:25 +04:00
To compile and install SDL:
1. Windows with Visual Studio:
2021-05-09 13:30:38 +04:00
* Read ./docs/README-visualc.md
2021-04-18 07:35:25 +04:00
Windows with gcc, either native or cross-compiling:
2021-05-09 13:30:38 +04:00
* Read the FAQ at https://wiki.libsdl.org/FAQWindows
2021-04-18 07:35:25 +04:00
* Run './configure; make; make install'
Mac OS X with Xcode:
* Read docs/README-macosx.md
Mac OS X from the command line:
* Run './configure; make; make install'
Linux and other UNIX systems:
* Run './configure; make; make install'
Android:
* Read docs/README-android.md
iOS:
* Read docs/README-ios.md
Using Cmake:
* Read docs/README-cmake.md
2. Look at the example programs in ./test, and check out the online
documentation at https://wiki.libsdl.org/
2021-06-11 22:56:03 +04:00
3. Join the SDL developer discussions, sign up on
https://discourse.libsdl.org/
and go to the development forum
https://discourse.libsdl.org/c/sdl-development/6
2021-04-18 07:35:25 +04:00
2021-06-11 22:56:03 +04:00
4. Sign up for the announcement list through the web interface:
https://www.libsdl.org/mailing-list.php
2021-04-18 07:35:25 +04:00
That's it!
Sam Lantinga <slouken@libsdl.org>