summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/SDL2/INSTALL.txt
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-02-27 16:28:05 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-02-27 16:53:49 +0100
commitcf6dc7d370407914020f3e623719f09c8668c692 (patch)
tree46b3416d091b4c09b50fba7ffcbd310aed032cc8 /3rdparty/SDL2/INSTALL.txt
parent64135e73f973d9b95beb0c60b65feb34fbfec64a (diff)
Placed SDL2 source since we need it on some platforms (nw)
Diffstat (limited to '3rdparty/SDL2/INSTALL.txt')
-rw-r--r--3rdparty/SDL2/INSTALL.txt40
1 files changed, 40 insertions, 0 deletions
diff --git a/3rdparty/SDL2/INSTALL.txt b/3rdparty/SDL2/INSTALL.txt
new file mode 100644
index 00000000000..66e5706f78e
--- /dev/null
+++ b/3rdparty/SDL2/INSTALL.txt
@@ -0,0 +1,40 @@
+
+To compile and install SDL:
+
+ 1. Windows with Visual Studio:
+ * Read VisualC.html
+
+ Windows with gcc, either native or cross-compiling:
+ * Read the FAQ at http://wiki.libsdl.org/moin.fcg/FAQWindows
+ * 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 http://wiki.libsdl.org/
+
+ 3. Join the SDL developer mailing list by sending E-mail to
+ sdl-request@libsdl.org
+ and put "subscribe" in the subject of the message.
+
+ Or alternatively you can use the web interface:
+ http://www.libsdl.org/mailing-list.php
+
+That's it!
+Sam Lantinga <slouken@libsdl.org>