summaryrefslogtreecommitdiff
path: root/Source/Android/custom_rules.xml
diff options
context:
space:
mode:
authorRyan Houdek <Sonicadvance1@gmail.com>2013-03-19 21:53:09 -0500
committerRyan Houdek <Sonicadvance1@gmail.com>2013-03-19 21:53:09 -0500
commitd11679a06e6a992216148fd2ce1730c9912c8564 (patch)
tree843eb3b17cf8fe6c72af7e32d5554ce35ce785d6 /Source/Android/custom_rules.xml
parentedd9d0e0ef6898a0528ac6389e93e9fca6132ff6 (diff)
Android mega commit of trash.
Diffstat (limited to 'Source/Android/custom_rules.xml')
-rw-r--r--Source/Android/custom_rules.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/Source/Android/custom_rules.xml b/Source/Android/custom_rules.xml
new file mode 100644
index 0000000000..3c6d5b53ba
--- /dev/null
+++ b/Source/Android/custom_rules.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="Dolphin" default="help">
+ <property name="ndkbuildopt" value=""/>
+ <target name="-pre-build">
+ <exec executable="${ndk.dir}/ndk-build" failonerror="true">
+ <arg line="-j4 ${ndkbuildopt}"/>
+ <env key="NDK_MODULE_PATH" path="..:../native/ext"/>
+ </exec>
+ </target>
+ <target name="clean" depends="android_rules.clean">
+ <exec executable="${ndk.dir}/ndk-build" failonerror="true">
+ <arg value="clean"/>
+ <env key="NDK_MODULE_PATH" path="..:../native/ext"/>
+ </exec>
+ </target>
+</project>