diff options
author | Parménides GV <parmegv@sdf.org> | 2015-06-04 19:20:15 +0200 |
---|---|---|
committer | Parménides GV <parmegv@sdf.org> | 2015-06-04 19:20:15 +0200 |
commit | 27594eeae6f40a402bc3110f06d57975168e74e3 (patch) | |
tree | cdabf6571e6f4ff07205fd6921d8095539a1fcdc /app/misc/build-native.bat | |
parent | 8dc4f58d96892fbfd83094fb85b1d17656035290 (diff) |
ics-openvpn as a submodule! beautiful
ics-openvpn is now officially on GitHub, and they track openssl and
openvpn as submodules, so it's easier to update everything. Just a git
submodule update --recursive.
I've also set up soft links to native modules from ics-openvpn in app,
so that we don't copy files in Gradle (which was causing problems with
the submodules .git* files, not being copied). That makes the repo
cleaner.
Diffstat (limited to 'app/misc/build-native.bat')
-rw-r--r-- | app/misc/build-native.bat | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/app/misc/build-native.bat b/app/misc/build-native.bat deleted file mode 100644 index 9885557a..00000000 --- a/app/misc/build-native.bat +++ /dev/null @@ -1,25 +0,0 @@ - -@echo on -echo Currently broken, feel free to fix and send me a patch, see the build-native.sh file how native libraries are build on UNIX -exit 1 - -call ndk-build APP_ABI=x86_64 -j 8 USE_BREAKPAD=0 - - -cd libs -mkdir ..\ovpnlibs -mkdir ..\ovpnlibs\assets - -for /D %%f in (*) do ( - copy %%f\nopievpn ..\ovpnlibs\assets\nopievpn.%%f - copy %%f\pievpn ..\ovpnlibs\assets\pievpn.%%f - - del %%f\libcrypto.so - del %%f\libssl.so - - mkdir ..\ovpnlibs\jniLibs - mkdir ..\ovpnlibs\jniLibs\%%f\ - copy %%f\*.so ..\ovpnlibs\jniLibs\%%f\ -) - -cd .. |