• Home
  • Raw
  • Download

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
105 cmake --build . --target install
124 The CMake configuration files set the default install directory location to
125 `$CMAKE_BINARY_DIR\install`, which is a child of your build directory. In this
126 example, the install directory becomes the `Vulkan-Headers\build\install`
131 Vulkan-Headers\build\install\include\vulkan
135 Vulkan-Headers\build\install\share\vulkan\registry
137 You can change the install directory with the `CMAKE_INSTALL_PREFIX` CMake
145 cmake -DCMAKE_INSTALL_PREFIX=/c/Users/dev/install .. # MINGW64 shell
168 cmake --build . --target install
170 to build the install target.
172 Build the `uninstall` target to remove the files from the install directory.
179 build directory. Build the `INSTALL` target from the Visual Studio solution
182 Build the `uninstall` target to remove the files from the install directory.
184 > Note: Since there are only the `INSTALL` and `uninstall` projects in the
208 cmake -DCMAKE_INSTALL_PREFIX=install ..
209 make install
221 cmake -DCMAKE_INSTALL_PREFIX=install ..
228 destination directory for the `install` target.
230 The above `cmake` command sets the install directory to
231 `$CMAKE_BINARY_DIR/install`, which is a child of your `build` directory. In
232 this example, the install directory becomes the `Vulkan-Headers/build/install`
235 The make file install target installs the header files to
237 Vulkan-Headers/build/install/include/vulkan
241 Vulkan-Headers/build/install/share/vulkan/registry
245 > `CMAKE_INSTALL_PREFIX`. In this case, you may need to use `sudo` to install
246 > to system directories later when you run `make install`.
254 To install the header files:
256 make install
260 cmake --build . --target install
262 To uninstall the files from the install directories, you can execute: