Remove improper mention of Vulkan-Profiles

This commit is contained in:
Juan Ramos 2023-07-25 12:19:37 -06:00 committed by Juan Ramos
parent 3ba6d4fc35
commit 70bbd3c8ac
2 changed files with 1 additions and 5 deletions

View file

@ -17,9 +17,6 @@ This document contains the instructions for building this repository on Linux, m
The following will be enough for most people, for more detailed instructions, see below.
```bash
git clone git@github.com:KhronosGroup/Vulkan-Profiles.git
cd Vulkan-Profiles
cmake -S . -B build/ -D CMAKE_BUILD_TYPE=Debug -D UPDATE_DEPS=ON
cmake --build build --config Debug
```

View file

@ -20,8 +20,7 @@ string(COMPARE EQUAL ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR} VUL_IS_TOP_
set_property(GLOBAL PROPERTY USE_FOLDERS ON) # Remove when min is 3.26, see CMP0143
set(PROFILES_CPP_STANDARD 17 CACHE STRING "Set the C++ standard to build against.")
set(CMAKE_CXX_STANDARD ${PROFILES_CPP_STANDARD})
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)