Lines Matching full:cmake
26 However, this repository contains CMake build configuration files to "install"
81 - [CMake 3.10.2](https://cmake.org/files/v3.10/cmake-3.10.2-win64-x64.zip) is recommended.
82 - Use the installer option to add CMake to the system PATH
92 The general approach is to run CMake to generate the Visual Studio project
93 files. Then either run CMake with the `--build` option to build from the
104 cmake ..
105 cmake --build . --target install
109 #### Use `CMake` to Create the Visual Studio Project Files
118 cmake ..
120 > Note: The `..` parameter tells `cmake` the location of the top of the
124 The CMake configuration files set the default install directory location to
137 You can change the install directory with the `CMAKE_INSTALL_PREFIX` CMake
145 cmake -DCMAKE_INSTALL_PREFIX=/c/Users/dev/install .. # MINGW64 shell
147 As it starts generating the project files, `cmake` responds with something
168 cmake --build . --target install
174 cmake --build . --target uninstall
195 - [CMake 3.10.2](https://cmake.org/files/v3.10/cmake-3.10.2-Linux-x86_64.tar.gz) is recommended.
200 The general approach is to run CMake to generate make files. Then either run
201 CMake with the `--build` option or `make` to build from the command line.
208 cmake -DCMAKE_INSTALL_PREFIX=install ..
213 #### Use CMake to Create the Make Files
221 cmake -DCMAKE_INSTALL_PREFIX=install ..
223 > Note: The `..` parameter tells `cmake` the location of the top of the
230 The above `cmake` command sets the install directory to
260 cmake --build . --target install
268 cmake --build . --target uninstall
274 [CMake 3.10.2](https://cmake.org/files/v3.10/cmake-3.10.2-Darwin-x86_64.tar.gz) is recommended.