Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ambrop72/badvpn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmbroz Bizjak <abizjak.pro@gmail.com>2019-05-25 21:41:17 +0300
committerAmbroz Bizjak <abizjak.pro@gmail.com>2019-05-25 21:41:17 +0300
commitd78b147995f7a4cf506fb8eaa43fb9e13cbb4576 (patch)
treebe48628829c7c01fb368c564202833cb8f18e04a
parent842241e119778bc1a370a25daf5f08e74e1b5b18 (diff)
Remove obsolete BUILD-WINDOWS.md.
-rw-r--r--BUILD-WINDOWS.md23
1 files changed, 0 insertions, 23 deletions
diff --git a/BUILD-WINDOWS.md b/BUILD-WINDOWS.md
deleted file mode 100644
index 830267c..0000000
--- a/BUILD-WINDOWS.md
+++ /dev/null
@@ -1,23 +0,0 @@
-To build on Windows, you need Visual Studio 2015 or 2017 and CMake.
-
-If you only want to build tun2socks, then no additional dependencies are needed, but pass `-DBUILD_NOTHING_BY_DEFAULT=1 -DBUILD_TUN2SOCKS=1` options to the CMake command line (see below). If the VPN system components are needed, then you will need to build OpenSSL and NSS yourself and we provide no instructions for that.
-
-Create a build directory (either in or outside the source directory).
-
-Open a command line and navigate to the build directory.
-
-Run CMake:
-
-```
-cmake "<path-to-source>" -G "<generator>" -DCMAKE_INSTALL_PREFIX="<install-dir>" [options...]
-```
-
-See [here](https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html) for the list of generators, for example you may want "Visual Studio 15 2017 Win64" for a 64-build with VS2017.
-
-Once cmake is successful, build with the following command:
-
-```
-cmake --build . --target install
-```
-
-If successful you will have the binaries in `<install-dir>/bin`.