Lines Matching +full:1 +full:- +full:installer +full:- +full:darwin +full:- +full:x86_64

7 1. [Contributing](#contributing-to-the-repository)
8 1. [Repository Content](#repository-content)
9 1. [Repository Set-up](#repository-set-up)
10 1. [Windows Build](#building-on-windows)
11 1. [Linux Build](#building-on-linux)
12 1. [MacOS Build](#building-on-macos)
17 API specification [repository](https://github.com/KhronosGroup/Vulkan-Docs).
30 If you are building other Vulkan-related repositories such as
31 [Vulkan-Loader](https://github.com/KhronosGroup/Vulkan-Loader),
40 - *install_dir*`/include/vulkan` : The header files found in the
42 - *install_dir*`/share/vulkan/registry` : The registry files found in the
48 ## Repository Set-Up
54 git clone https://github.com/KhronosGroup/Vulkan-Headers.git
72 - Windows
73 - Any Personal Computer version supported by Microsoft
74 - Microsoft [Visual Studio](https://www.visualstudio.com/)
75 - Versions
76 - [2015](https://www.visualstudio.com/vs/older-downloads/)
77 - [2017](https://www.visualstudio.com/vs/older-downloads/)
78 - [2019](https://www.visualstudio.com/vs/downloads/)
79 - The Community Edition of each of the above versions is sufficient, as
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
83 - Git Client Support
84 - [Git for Windows](http://git-scm.com/download/win) is a popular solution
86 - Some IDEs (e.g., [Visual Studio](https://www.visualstudio.com/),
90 ### Windows Build - Microsoft Visual Studio
93 files. Then either run CMake with the `--build` option to build from the
101 cd Vulkan-Headers
105 cmake --build . --target install
115 cd Vulkan-Headers
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
142 cd Vulkan-Headers
145 cmake -DCMAKE_INSTALL_PREFIX=/c/Users/dev/install .. # MINGW64 shell
150 -- Building for: Visual Studio 14 2015
152 which is a 32-bit generator.
158 The above steps create a Windows solution file named `Vulkan-Headers.sln` in
168 cmake --build . --target install
174 cmake --build . --target uninstall
178 Launch Visual Studio and open the "Vulkan-Headers.sln" solution file in the
195 - [CMake 3.10.2](https://cmake.org/files/v3.10/cmake-3.10.2-Linux-x86_64.tar.gz) is recommended.
196 - git
201 CMake with the `--build` option or `make` to build from the command line.
205 cd Vulkan-Headers
208 cmake -DCMAKE_INSTALL_PREFIX=install ..
218 cd Vulkan-Headers
221 cmake -DCMAKE_INSTALL_PREFIX=install ..
232 this example, the install directory becomes the `Vulkan-Headers/build/install`
237 Vulkan-Headers/build/install/include/vulkan
241 Vulkan-Headers/build/install/share/vulkan/registry
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.