Lines Matching full:cmake
59 1. CMake or Environment variable overrides (e.g., -DVULKAN_HEADERS_INSTALL_DIR)
76 directory and pass it on the CMake command line for building this repository,
89 and pass it on the CMake command line for building this repository, as
106 before configuring your build with CMake.
123 it on the CMake command line for building this repository, as described below.
154 cmake -C helper.cmake ..
155 cmake --build .
160 cmake -A x64 -C helper.cmake ..
161 cmake --build .
166 cmake -A Win32 -C helper.cmake ..
167 cmake --build .
174 - You may need to adjust some of the CMake options based on your platform. See
186 - The `update_deps.py` script generates a file named `helper.cmake` and places
188 case). This file contains CMake commands to set the CMake `*_INSTALL_DIR`
190 repositories. You can use this file with the `cmake -C` option to set these
191 variables when you generate your build files with CMake. This lets you avoid
192 entering several `*_INSTALL_DIR` variable settings on the CMake command line.
209 A helper CMake target `VulkanVL_generated_source` is also provided to simplify
212 cmake --build . --target VulkanVL_generated_source
216 When generating native platform build files through CMake, several options can
238 These variables should be set using the `-D` option when invoking CMake to
253 - [CMake 3.10.2](https://cmake.org/files/v3.10/cmake-3.10.2-win64-x64.zip) is recommended.
254 - Use the installer option to add CMake to the system PATH
264 The general approach is to run CMake to generate the Visual Studio project
265 files. Then either run CMake with the `--build` option to build from the
274 cmake -A x64 -DVULKAN_HEADERS_INSTALL_DIR=absolute_path_to_install_dir \
276 cmake --build .
278 The above commands instruct CMake to find and use the default Visual Studio
280 architecture. The second CMake command builds the Debug (default)
285 #### Use `CMake` to Create the Visual Studio Project Files
293 cmake -A x64 -DVULKAN_HEADERS_INSTALL_DIR=absolute_path_to_install_dir \
296 > Note: The `..` parameter tells `cmake` the location of the top of the
308 See this [list](#cmake-visual-studio-generators) of other possible generators
314 `VULKAN_HEADERS_INSTALL_DIR` CMake variable with the `-D` CMake option. In
321 `GLSLANG_INSTALL_DIR` CMake variable with the `-D` CMake option. In either
335 cmake --build .
339 cmake --build . --config Release
352 The CMake project also generates an "install" target that you can use to copy
359 files with CMake.
363 cmake --build . --config Release --target install
370 repository with the install target and modify your CMake invocation to add the
373 cmake -A x64 -DVULKAN_HEADERS_INSTALL_DIR=absolute_path_to_install_dir \
403 #### CMake Visual Studio Generators
436 [CMake 3.10.2](https://cmake.org/files/v3.10/cmake-3.10.2-Linux-x86_64.tar.gz) is recommended.
446 The general approach is to run CMake to generate make files. Then either run
447 CMake with the `--build` option or `make` to build from the command line.
454 cmake -DVULKAN_HEADERS_INSTALL_DIR=absolute_path_to_install_dir \
460 #### Use CMake to Create the Make Files
468 cmake -DCMAKE_BUILD_TYPE=Debug \
473 > Note: The `..` parameter tells `cmake` the location of the top of the
482 `VULKAN_HEADERS_INSTALL_DIR` CMake variable with the `-D` CMake option. In
489 `GLSLANG_INSTALL_DIR` CMake variable with the `-D` CMake option. In either
509 cmake --build .
511 If your build system supports ccache, you can enable that via CMake option `-DUSE_CCACHE=On`
522 CMake option of the form `BUILD_WSI_xxx_SUPPORT` can be set to `OFF`.
538 specified when creating the build files with CMake:
547 CMake variables to override their defaults. For example, if you would like to
548 install to `/tmp/build` instead of `/usr/local`, on your CMake command line
557 See the CMake documentation for more details on using these variables to
605 Finally, rebuild the repository using `cmake` and `make`, as explained above.
751 [CMake 3.10.2](https://cmake.org/files/v3.10/cmake-3.10.2-Darwin-x86_64.tar.gz) is recommended.
775 #### CMake Generators
777 This repository uses CMake to generate build or project files that are then
778 used to build the repository. The CMake generators explicitly supported in
791 cmake -DVULKAN_HEADERS_INSTALL_DIR=absolute_path_to_install_dir \
807 cmake -DVULKAN_HEADERS_INSTALL_DIR=absolute_path_to_install_dir \