Lines Matching full:path
22 C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional>cd C:\Path\to
23 C:\Path\to>
25 Where *C:\Path\to* is path to your real working directory.
29 C:\Path\to>mkdir install
31 If *cmake* command is not available from *Command Prompt*, add it to system *PATH* variable:
33 C:\Path\to>set PATH=%PATH%;C:\Program Files (x86)\CMake\bin
35 If *git* command is not available from *Command Prompt*, add it to system *PATH* variable:
37 C:\Path\to>set PATH=%PATH%;C:\Program Files\Git\cmd
55 C:\Path\to> git clone -b [release_tag] https://github.com/protocolbuffers/protobuf.git
62 C:\Path\to>cd protobuf
63 C:\Path\to\protobuf>
69 C:\Path\to\protobuf> git submodule update --init --recursive
74 C:\Path\to\protobuf>cd cmake
75 C:\Path\to\protobuf\cmake>
95 C:\Path\to\protobuf\cmake>mkdir build & cd build
96 C:\Path\to\protobuf\cmake\build>
103 C:\Path\to\protobuf\cmake\build>mkdir release & cd release
104 C:\Path\to\protobuf\cmake\build\release>cmake -G "NMake Makefiles" ^
113 C:\Path\to\protobuf\cmake\build>mkdir debug & cd debug
114 C:\Path\to\protobuf\cmake\build\debug>cmake -G "NMake Makefiles" ^
123 C:\Path\to\protobuf\cmake\build>mkdir solution & cd solution
124 C:\Path\to\protobuf\cmake\build\solution>cmake -G "Visual Studio 16 2019" ^
136 C:Path\to\protobuf\cmake\build\solution\CMakeCache
145 C:\Path\to\protobuf\cmake\build\release>nmake
149 C:\Path\to\protobuf\cmake\build\debug>nmake
167 C:\Path\to\protobuf\cmake\build\release>nmake check
171 C:\Path\to\protobuf\cmake\build\debug>nmake check
188 C:\Path\to\protobuf>cmake\build\release\tests.exe --gtest_filter=AnyTest*
215 C:\Path\to\protobuf\cmake\build\release>nmake install
219 C:\Path\to\protobuf\cmake\build\debug>nmake install
231 * Copy protoc.exe wherever you put build tools (probably somewhere in your PATH).
275 * Make sure zlib's two headers are in your `C:\Path\to\install\include` path
277 `C:\Path\to\install\lib` library path.
283 C:\Path\to>git clone -b v1.2.8 https://github.com/madler/zlib.git
284 C:\Path\to>cd zlib
288 C:\Path\to\zlib>mkdir build & cd build
289 C:\Path\to\zlib\build>mkdir release & cd release
290 C:\Path\to\zlib\build\release>cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release ^
292 C:\Path\to\zlib\build\release>nmake & nmake install
297 Now add *bin* folder from *install* to system *PATH*:
299 C:\Path\to>set PATH=%PATH%;C:\Path\to\install\bin
311 -DZLIB_INCLUDE_DIR=<path to dir containing zlib headers>
312 -DZLIB_LIB=<path to dir containing zlib>