summaryrefslogtreecommitdiff
path: root/build-native.bat
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2012-08-12 20:14:54 +0200
committerArne Schwabe <arne@rfc2549.org>2012-08-12 20:14:54 +0200
commit73b1388f398c8c0de8d3b7ba3e56de44c52372c3 (patch)
tree56f9ab77437897d487f402fdda0917c6bb25591b /build-native.bat
parent043132584dce9c49dbe3d4167d8d52e4ca9b05f3 (diff)
Add bat file to ease building native libs on windowsv0.5.18
Diffstat (limited to 'build-native.bat')
-rw-r--r--build-native.bat13
1 files changed, 13 insertions, 0 deletions
diff --git a/build-native.bat b/build-native.bat
new file mode 100644
index 00000000..73fc94b9
--- /dev/null
+++ b/build-native.bat
@@ -0,0 +1,13 @@
+@echo on
+ndk-build -j 8
+cd libs
+mkdir ..\assets
+
+
+for /D %%f in (*) do (
+ copy %%f\minivpn ..\assets\minivpn.%%f
+ del %%f\libcrypto.so
+ del %%f\libssl.so
+)
+
+cd .. \ No newline at end of file