aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorRay <raysan5@gmail.com>2014-09-16 23:25:31 +0200
committerRay <raysan5@gmail.com>2014-09-16 23:25:31 +0200
commitd86c5e39507f5580eb93eb0d8024d2cd77ebeb8a (patch)
treec8ecb30de4b58af6e1594b5c0299f345a8ed4415 /README.md
parent278f82e536b7f8791e9a0068f36d6212542db6ba (diff)
downloadraylib-d86c5e39507f5580eb93eb0d8024d2cd77ebeb8a.tar.gz
raylib-d86c5e39507f5580eb93eb0d8024d2cd77ebeb8a.zip
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md34
1 files changed, 18 insertions, 16 deletions
diff --git a/README.md b/README.md
index edd92c49..202193ab 100644
--- a/README.md
+++ b/README.md
@@ -53,8 +53,6 @@ support of DDS texture files (compressed and uncompressed) along with mipmaps su
Lots of code changes and lot of testing have concluded in this amazing new raylib 1.1.
-Enjoy it.
-
notes on raylib 1.2
-------------------
@@ -85,7 +83,7 @@ features
* Powerful math module for Vector and Matrix operations [raymath]
* Audio loading and playing with streaming support (WAV and OGG)
* Custom color palette for fancy visuals on raywhite background
- * Multiple platforms support: Windows, Linux, Mac, Android and Raspberry Pi
+ * Multiple platforms support: Windows, Linux, Mac, **Android** and **Raspberry Pi**
raylib uses on its core module the outstanding [GLFW3] (http://www.glfw.org/) library. The best option by far I found for
multiplatform (Windows, Linux, Mac) window/context and input management (clean, focused, great license, well documented, modern, ...).
@@ -143,21 +141,23 @@ _Step 2._ Navigate from command line to raylib/src/ folder and type:
_Step 1._ Make sure you have installed Android SDK, Android NDK and Apache Ant tools:
- * Download and decompress on C: [Android SDK r23] (http://dl.google.com/android/android-sdk_r23.0.2-windows.zip)
- * Download and decompress on C: [Android NDK r10b] (http://dl.google.com/android/ndk/android-ndk32-r10b-windows-x86.zip)
- * Download and decompress on C: [Apache Ant 1.9.4] (http://ftp.cixug.es/apache//ant/binaries/apache-ant-1.9.4-bin.zip)
+> Download and decompress on C: [Android SDK r23](http://dl.google.com/android/android-sdk_r23.0.2-windows.zip)
+
+> Download and decompress on C: [Android NDK r10b](http://dl.google.com/android/ndk/android-ndk32-r10b-windows-x86.zip)
+
+> Download and decompress on C: [Apache Ant 1.9.4](http://ftp.cixug.es/apache//ant/binaries/apache-ant-1.9.4-bin.zip)
_Step 2._ Create the following environment variables with the correct paths:
- * ANDROID_SDK_TOOLS = C:\android-sdk\platform-tools
- * ANDROID_NDK_ROOT = C:\android-ndk-r10b
- * ANT_HOME = C:\apache-ant-1.9.4
+ ANDROID_SDK_TOOLS = C:\android-sdk\platform-tools
+ ANDROID_NDK_ROOT = C:\android-ndk-r10b
+ ANT_HOME = C:\apache-ant-1.9.4
_Step 3._ Navigate from command line to folder raylib/template_android/ and type:
%ANDROID_NDK_ROOT%\ndk-build
-* NOTE: libraylib.a will be generated in folder raylib/src_android/obj/local/armeabi/, it must be copied
+NOTE: libraylib.a will be generated in folder raylib/src_android/obj/local/armeabi/, it must be copied
to Android project; if using raylib/template_android project, copy it to raylib/template_android/jni/libs/.
building examples
@@ -189,15 +189,17 @@ _Step 2._ Navigate from command line to raylib/examples/ folder and type:
_Step 1._ Make sure you have installed Android SDK, Android NDK and Apache Ant tools:
- * Download and decompress on C: [Android SDK r23] (http://dl.google.com/android/android-sdk_r23.0.2-windows.zip)
- * Download and decompress on C: [Android NDK r10b] (http://dl.google.com/android/ndk/android-ndk32-r10b-windows-x86.zip)
- * Download and decompress on C: [Apache Ant 1.9.4] (http://ftp.cixug.es/apache//ant/binaries/apache-ant-1.9.4-bin.zip)
+> Download and decompress on C: [Android SDK r23] (http://dl.google.com/android/android-sdk_r23.0.2-windows.zip)
+
+> Download and decompress on C: [Android NDK r10b] (http://dl.google.com/android/ndk/android-ndk32-r10b-windows-x86.zip)
+
+> Download and decompress on C: [Apache Ant 1.9.4] (http://ftp.cixug.es/apache//ant/binaries/apache-ant-1.9.4-bin.zip)
_Step 2._ Create the following environment variables with the correct paths:
- * ANDROID_SDK_TOOLS = C:\android-sdk\platform-tools
- * ANDROID_NDK_ROOT = C:\android-ndk-r10b
- * ANT_HOME = C:\apache-ant-1.9.4
+ ANDROID_SDK_TOOLS = C:\android-sdk\platform-tools
+ ANDROID_NDK_ROOT = C:\android-ndk-r10b
+ ANT_HOME = C:\apache-ant-1.9.4
_Step 3._ To compile project, navigate from command line to folder raylib/template_android/ and type: