From 2620a62641fde11a14d4ce96451c5436be3549e6 Mon Sep 17 00:00:00 2001 From: tom-huntington <55266932+tom-huntington@users.noreply.github.com> Date: Fri, 13 Oct 2023 00:35:33 +1300 Subject: [PATCH] Update README.md (#1675) * Update README.md Update readme cmake commands * Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d7138a6..215957d 100644 --- a/README.md +++ b/README.md @@ -30,11 +30,11 @@ To build the local samples and tests you'll have to clone this repository and ru ```git clone --recurse-submodules https://github.com/KhronosGroup/Vulkan-Hpp.git``` 2. Change the current directory to the newly created Vulkan-Hpp directory. 3. Create a build environment with CMake - ```cmake -DSAMPLES_BUILD_WITH_LOCAL_VULKAN_HPP=ON -DSAMPLES_BUILD=ON -DTESTS_BUILD_WITH_LOCAL_VULKAN_HPP=ON -DTESTS_BUILD=ON -B build``` + ```cmake -DVULKAN_HPP_SAMPLES_BUILD=ON -DVULKAN_HPP_SAMPLES_BUILD_WITH_LOCAL_VULKAN_HPP=ON -DVULKAN_HPP_TESTS_BUILD=ON -DVULKAN_HPP_TESTS_BUILD_WITH_LOCAL_VULKAN_HPP=ON -B build``` You might have to specify a generator via `-G`, for a full list of generators execute ```cmake -G```. * To rebuild `vulkan.hpp` from the `vk.xml` XML registry file, add the `-DVULKAN_HPP_RUN_GENERATOR=ON` option to the CMake command line. -4. Either open the generated project with an IDE, e.g. Visual Studio or launch the build process with ```cmake --build .```. +4. Either open the generated project with an IDE, e.g. Visual Studio or launch the build process with ```cmake --build build --parallel```. Optional: To update the Vulkan-Hpp and its submodules execute ```git pull --recurse-submodules```.