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
commit84e17bad54b0d88cea82db34c3929804dc814b99 (patch)
treed491c841c1d3a8d367fd4d37cadae102870a63e0 /build-native.bat
parentdf44ab632e8dbbcf48e9f6d0e63ecadcfbe3d58d (diff)
Add bat file to ease building native libs on windows
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