docs: remove references to configure build systems from documentation

This commit is contained in:
Anonymous Maarten
2022-11-24 18:08:59 +01:00
committed by Sam Lantinga
parent 1c0d26e55c
commit bdb416e4f3
6 changed files with 22 additions and 39 deletions

View File

@@ -6,16 +6,16 @@ To compile and install SDL:
Windows with gcc, either native or cross-compiling:
* Read the FAQ at https://wiki.libsdl.org/FAQWindows
* Run './configure; make; make install'
* Run 'cmake -S . -B build && cmake --build build && cmake --install install'
macOS with Xcode:
* Read docs/README-macosx.md
macOS from the command line:
* Run './configure; make; make install'
* Run 'cmake -S . -B build && cmake --build build && cmake --install install'
Linux and other UNIX systems:
* Run './configure; make; make install'
* Run 'cmake -S . -B build && cmake --build build && cmake --install install'
Android:
* Read docs/README-android.md