Lines Matching full:directory

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.
33 resulting install directory to those repositories.
37 The `install` target installs the following files under the directory
41 `include/vulkan` directory of this repository
43 `registry` directory of this repository
46 directory.
62 A common convention is to place the build directory in the top directory of
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
109 Change your current directory to the top of the cloned repository directory,
110 create a build directory and generate the Visual Studio project files:
118 > repository. If you place your build directory someplace else, you'll need to
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`
124 directory.
134 You can change the install directory with the `CMAKE_INSTALL_PREFIX` CMake
156 the build directory.
163 While still in the build directory:
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.
212 Change your current directory to the top of the cloned repository directory,
213 create a build directory and generate the make files:
221 > repository. If you place your `build` directory someplace else, you'll need
224 Set the `CMAKE_INSTALL_PREFIX` variable to the directory to serve as the
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`
230 directory.