Protobuf generator and bindings for Qt framework
Viktor Kopp 18e4078dc4 Remove deprecated ÁbstractClient::lastError-functionality (#108) | 5 年 前 | |
---|---|---|
3rdparty | 5 年 前 | |
cmake | 5 年 前 | |
examples | 5 年 前 | |
src | 5 年 前 | |
tests | 5 年 前 | |
.gitignore | 5 年 前 | |
.gitmodules | 5 年 前 | |
CMakeLists.txt | 5 年 前 | |
Doxyfile.in | 5 年 前 | |
LICENSE | 5 年 前 | |
ProjectConfig.cmake.in | 5 年 前 | |
README.md | 5 年 前 |
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 . [--config <RELEASE|DEBUG>] -- -j<N>
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 . [--config <RELEASE|DEBUG>] -- /m:<N>
protoc --plugin=protoc-gen-qtprotobuf=<path/to/bin>/qtprotobuf --qtprotobuf_out=<output_dir> <protofile>.proto [--qtprotobuf_opt=out=<output_dir>]
cd <build directory>
ctest