diff options
author | Arne Schwabe <arne@rfc2549.org> | 2013-05-29 22:05:39 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2013-05-29 22:05:39 +0200 |
commit | f7bcff4ce6e3b74d2286501f946dc37dccdfa96b (patch) | |
tree | 99033c17bc10ae8013cf4e5fb1eec629b7e6f06b /misc/build-native.bat | |
parent | 0ccf804fb65842f36078832ca0cff6dd2d7be9f7 (diff) |
Move build files to misc directory
--HG--
rename : build-native.bat => misc/build-native.bat
rename : build-native.sh => misc/build-native.sh
rename : fetchtranslations.sh => misc/fetchtranslations.sh
Diffstat (limited to 'misc/build-native.bat')
-rw-r--r-- | misc/build-native.bat | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/misc/build-native.bat b/misc/build-native.bat new file mode 100644 index 00000000..2c6303ea --- /dev/null +++ b/misc/build-native.bat @@ -0,0 +1,14 @@ +@echo on
+call 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 |