Lines Matching full:install
26 However, this repository contains CMake build configuration files to "install"
27 the files from this repository to a specific install directory. For example,
28 you can install the files to a system directory such as `/usr/local` on Linux.
32 you need to build the install target of this repository and provide the
33 resulting install directory to those repositories.
37 The `install` target installs the following files under the directory
45 The `uninstall` target can be used to remove the above files from the install
60 ### Build and Install Directories
63 the repository with a name of `build` and place the install directory as a
64 child of the build directory with the name `install`. The remainder of these
103 cmake --build . --target install
121 The CMake configuration files set the default install directory location to
122 `$CMAKE_BINARY_DIR\install`, which is a child of your build directory. In this
123 example, the install directory becomes the `Vulkan-Headers\build\install`
128 Vulkan-Headers\build\install\include\vulkan
132 Vulkan-Headers\build\install\share\vulkan\registry
134 You can change the install directory with the `CMAKE_INSTALL_PREFIX` CMake
142 cmake -DCMAKE_INSTALL_PREFIX=/c/Users/dev/install .. # MINGW64 shell
165 cmake --build . --target install
167 to build the install target.
169 Build the `uninstall` target to remove the files from the install directory.
176 build directory. Build the `INSTALL` target from the Visual Studio solution
179 Build the `uninstall` target to remove the files from the install directory.
181 > Note: Since there are only the `INSTALL` and `uninstall` projects in the
205 cmake -DCMAKE_INSTALL_PREFIX=install ..
206 make install
218 cmake -DCMAKE_INSTALL_PREFIX=install ..
225 destination directory for the `install` target.
227 The above `cmake` command sets the install directory to
228 `$CMAKE_BINARY_DIR/install`, which is a child of your `build` directory. In
229 this example, the install directory becomes the `Vulkan-Headers/build/install`
232 The make file install target installs the header files to
234 Vulkan-Headers/build/install/include/vulkan
238 Vulkan-Headers/build/install/share/vulkan/registry
242 > `CMAKE_INSTALL_PREFIX`. In this case, you may need to use `sudo` to install
243 > to system directories later when you run `make install`.
251 To install the header files:
253 make install
257 cmake --build . --target install
259 To uninstall the files from the install directories, you can execute: