mirror of
https://github.com/Qv2ray/Qv2ray.git
synced 2025-05-19 18:30:34 +08:00

* [add] Added gRPC support, however this will make all CI fail.
* [add] Add full support for up/download speed.
* [Trigger-CI]
* [CI] add gRPC for travis linux
* [CI] fixed CI for linux
* [CI] Added ci script for Windows
* APPV
* [Fixed] Fixed Windows CI
Signed-off-by: Leroy.H.Y <lhy20010403@hotmail.com>
* Update .appveyor.yml
* Update .appveyor.yml
* Update .travis.yml
* Update .travis.yml
* Update grpc_gen.bat
* [Trigger-CI]
* Update .appveyor.yml
* Signed-off-by: Leroy.H.Y <lhy20010403@hotmail.com>
* Update grpc_gen.sh
* [macOS] Added macOS gRPC
* [macOS] Added macOS gRPC
* Update .travis.yml
Former-commit-id: b2e54a7ac2
7 lines
205 B
Bash
Executable File
7 lines
205 B
Bash
Executable File
#!/bin/bash
|
|
cd tools
|
|
mkdir -p ../libs/gen
|
|
protoc --grpc_out=../libs/gen --plugin=protoc-gen-grpc=`which grpc_cpp_plugin` ./v2ray_api_commands.proto
|
|
protoc --cpp_out=../libs/gen ./v2ray_api_commands.proto
|
|
|