Lines Matching full:build

1 # Build Instructions
10 1. [Windows Build](#building-on-windows)
11 1. [Linux Build](#building-on-linux)
12 1. [MacOS Build](#building-on-macos)
26 However, this repository contains CMake build configuration files to "install"
32 you need to build the install target of this repository and provide the
60 ### Build and Install Directories
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
90 ### Windows Build - Microsoft Visual Studio
93 files. Then either run CMake with the `--build` option to build from the
100 mkdir build
101 cd build
103 cmake --build . --target install
110 create a build directory and generate the Visual Studio project files:
113 mkdir build
114 cd build
118 > repository. If you place your build directory someplace else, you'll need 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
140 mkdir build
141 cd build
156 the build directory.
158 At this point, you can build the solution from the command line or open the
161 #### Build the Solution From the Command Line
163 While still in the build directory:
165 cmake --build . --target install
167 to build the install target.
169 Build the `uninstall` target to remove the files from the install directory.
171 cmake --build . --target uninstall
173 #### Build the Solution With Visual Studio
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.
195 ### Linux Build
198 CMake with the `--build` option or `make` to build from the command line.
203 mkdir build
204 cd build
213 create a build directory and generate the make files:
216 mkdir build
217 cd build
221 > repository. If you place your `build` directory someplace else, you'll need
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`
234 Vulkan-Headers/build/install/include/vulkan
238 Vulkan-Headers/build/install/share/vulkan/registry
249 does nothing, since there are no libraries or executables to build.
257 cmake --build . --target install
265 cmake --build . --target uninstall