1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-06 09:40:41 +03:00

Update Windows build instructions

Co-authored-by: Davide Beatrici <github@davidebeatrici.dev>
This commit is contained in:
Yihong Wu 2022-05-18 13:53:27 +09:00 committed by Yihong Wu
parent 5146bbbadc
commit 333cbb3f29

View File

@ -43,6 +43,19 @@ into it. So that is what will be described below.
C:\vcpkg> vcpkg integrate install C:\vcpkg> vcpkg integrate install
``` ```
## Update
- vcpkg
You are recommended to update vcpkg from time to time, so that the latest libraries are used in the build.
Go to the installation path, pull the latest repo and the binary:
```
C:\vcpkg> git pull
C:\vcpkg> bootstrap-vcpkg.bat
```
## Building ## Building
1. Launch Visual Studio 1. Launch Visual Studio
@ -55,6 +68,8 @@ into it. So that is what will be described below.
**Note**: This step is not necessary if you have chosen **Clone a repository** as Visual Studio automatically takes care of it. **Note**: This step is not necessary if you have chosen **Clone a repository** as Visual Studio automatically takes care of it.
1. Switch to folder view in the solution explorer
1. Select a configuration from the dropdown menu below the search box. The default configurations are: 1. Select a configuration from the dropdown menu below the search box. The default configurations are:
- x64-native - x64-native
@ -88,3 +103,25 @@ into it. So that is what will be described below.
Run `vpnsetup.exe` to install desired components. Run `vpnsetup.exe` to install desired components.
1. Congrats, you now have a complete CMake development environment for SoftEtherVPN on Windows, enjoy and happy contributing! 1. Congrats, you now have a complete CMake development environment for SoftEtherVPN on Windows, enjoy and happy contributing!
## Notes
1. Build number
You can change the build number in `CMakeSettings.json`. Use any integer no less than 5180.
Delete and regenerate CMake cache after the change.
1. 32-bit Windows
You don't need 32-bit Windows to build 32-bit executables. However, if 32-bit Windows is what you only have, things become a little complicated.
Visual Studio 2019 is the last version that works on 32-bit Windows. It does the job but its bundled CMake and Ninja are 64-bit versions.
After the installation of VS 2019, you need to download 32-bit CMake and Ninja and replace those that come with VS in:
```
C:\Program Files\Microsoft Visual Studio\2019\Community\Common7\IDE\CommonExtensions\Microsoft\CMake
```
Currently CMake has an official x86 installer but Ninja does not. You may need to download from a 3rd party or build from source.