Lines Matching +refs:cmake +refs:help +refs:variable

5 You need to have [CMake](http://www.cmake.org), [Visual Studio](https://www.visualstudio.com)
31 If *cmake* command is not available from *Command Prompt*, add it to system *PATH* variable:
35 If *git* command is not available from *Command Prompt*, add it to system *PATH* variable:
39 …ly, you will want to download [ninja](https://ninja-build.org/) and add it to your *PATH* variable.
83 [generators](http://www.cmake.org/cmake/help/latest/manual/cmake-generators.7.html)
88 * [Makefile](http://www.cmake.org/cmake/help/latest/manual/cmake-generators.7.html#makefile-generat…
91 * [Visual Studio](http://www.cmake.org/cmake/help/latest/manual/cmake-generators.7.html#visual-stud…
94 * [Ninja](https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html#ninja-generator)
98 …directly CMake-based projects](https://docs.microsoft.com/en-us/cpp/build/cmake-projects-in-visual…
114 C:\Path\to\build\protobuf\release>cmake -G "NMake Makefiles" ^
124 C:\Path\to\build\protobuf\debug>cmake -G "Ninja" ^
134 C:\Path\to\build\protobuf\solution>cmake -G "Visual Studio 16 2019" ^
151 …installed your Google Test copy, you need add the following definition to your *cmake* command line
155 [find_package](https://cmake.org/cmake/help/latest/command/find_package.html) will search in a defa…
158 building Google Test). For this, you need to set the `CMAKE_PREFIX_PATH` CMake variable. (There are…
159 see the [manual](https://cmake.org/cmake/help/latest/command/find_package.html) for details.)
164 C:\Path\to\build\protobuf\solution>cmake -G "Visual Studio 16 2019" ^
172 To disable testing completely, you need to add the following argument to you *cmake* command line: …
176 C:\Path\to\build\protobuf\solution>cmake -G "Visual Studio 16 2019" ^
184 The standard way to compile a *CMake* project is `cmake --build <directory>`.
189 cmake --build C:\Path\to\build\protobuf\solution --config Release
215 C:\Path\to\protobuf\cmake\build\release>ctest --progress --output-on-failure
219 C:\Path\to\protobuf\cmake\build\release>cmake --build . --target check
267 cmake --build C:\Path\to\build\protobuf\solution --config Release --target install
305 * Add an additional flag `-Dprotobuf_BUILD_SHARED_LIBS=ON` when invoking cmake
346 C:\Path\to\build\zlib\release>cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Release ^
348 C:\Path\to\src\zlib\build\release>cmake --build . --target install
357 You need reconfigure protobuf with flag `-Dprotobuf_WITH_ZLIB=ON` when invoking cmake.