Protobuf generator and bindings for Qt framework
Viktor Kopp a6ae63d211 Added test to check ssl errors handling ( #111 ) | пре 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