Protobuf generator and bindings for Qt framework
|
|
7 anos atrás | |
|---|---|---|
| 3rdparty | 7 anos atrás | |
| cmake | 7 anos atrás | |
| examples | 7 anos atrás | |
| src | 7 anos atrás | |
| tests | 7 anos atrás | |
| .gitignore | 7 anos atrás | |
| .gitmodules | 7 anos atrás | |
| CMakeLists.txt | 7 anos atrás | |
| Doxyfile.in | 7 anos atrás | |
| LICENSE | 7 anos atrás | |
| ProjectConfig.cmake.in | 7 anos atrás | |
| README.md | 7 anos atrás |
Protobuf plugin to generate Qt classes
Check installation of protobuf and grpc in your system. Minimum required versions are protobuf-3.6.0 and grpc-1.15.0.
Note: Older versions could be supported as well but not officially tested.
If required versions of libraries are not found in your system, you may use all-in-one build procedure for prerequesties
Clone grpc project from official repository to 3rdparty folder:
git submodule update --init --recursive
mkdir build
cd build
cmake ..
cmake --build . -j <N> [--config <RELEASE|DEBUG>]
Download and install:
Note: All applications should be in PATH
Clone grpc project from official repository to 3rdparty folder:
git submodule update --init --recursive
Open Qt MSVC command line and follow steps:
"C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64
cd <directory with qtprotobuf project>
mkdir build
cd build
cmake ..
cmake --build . -j <N> [--config <RELEASE|DEBUG>]
protoc --plugin=protoc-gen-qtprotobuf=<path/to/bin>/qtprotobuf --qtprotobuf_out=<output_dir> <protofile>.proto [--qtprotobuf_opt=out=<output_dir>]