Qv2ray/docs/en-US/BUILDING.md
Leroy.H.Y 96e600cea1 [doc] Changed docs path
Former-commit-id: 390aa748fc
2019-10-06 20:54:08 +08:00

33 lines
747 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Building Qv2ray
Qv2ray is a cross platform v2ray GUI, so you can run your build on all desktop platforms.
## Obtaining Source Code
-
## Dependencies
- Qt version >= 5
- Qt version 5.12 and 5.13 is recommended
- However, you may build it against 5.11 even 5.9.
- gRPC & protobuf
- It's now required if you want to use the `dev` version. There's no such dependencies in the `version-v1` branch.
- OpenSSL
- The build may **not** fail if you don't have it since it's a **runtime dependency**.
## Build instructions
```bash
#/bin/bash
# Recursively clone the project since we have a submodule.
git clone --recursive https://github.com/lhy0403/Qv2ray
cd Qv2ray
./tools/gen_grpc.sh
mkdir build && cd build
qmake ..
make -j4
```