Skip to content

Commit 31dd143

Browse files
committed
docs: same reason as prev commit
1 parent 35635dc commit 31dd143

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

notes/src/README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ Personal notes from following the [Vulkan Tutorial](https://docs.vulkan.org/tuto
55
## Environment
66

77
- **Platform**: Windows (MSYS2 UCRT64)
8-
- **Compiler**: Clang (C++20 with Modules)
9-
- **Build system**: CMake + Ninja
10-
- **Vulkan SDK**: 1.4
8+
- **Compiler**: Clang 21 (C++23 Modules & libc++)
9+
- **Build system**: CMake 3.30+ / Ninja
10+
- **Vulkan SDK**: 1.4.341.1 (via `find_package(Vulkan)`, using Vulkan-Hpp C++ Module)
1111

1212
## Dependencies
1313

@@ -21,6 +21,8 @@ All third-party libraries are managed as git submodules under `deps/`.
2121

2222
## Quick Start
2323

24+
Download and install [Vulkan SDK](https://vulkan.lunarg.com/sdk/home) first, then:
25+
2426
```bash
2527
git clone --recurse-submodules https://github.com/qiekn/vulkan
2628
cd vulkan
@@ -30,5 +32,5 @@ cmake -B build -G Ninja \
3032
-DCMAKE_CXX_COMPILER=clang++
3133

3234
cmake --build build
33-
./build/main
35+
./build/vulkan
3436
```

notes/src/dev-environment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Vulkan SDK
44

5-
Download and install [Vulkan SDK 1.4+](https://vulkan.lunarg.com/sdk/home).
5+
Download and install [Vulkan SDK 1.4+](https://vulkan.lunarg.com/sdk/home). Make sure the `VULKAN_SDK` environment variable is set — CMake uses `find_package(Vulkan)` to locate it.
66

77
## Toolchain (MSYS2 UCRT64)
88

@@ -35,7 +35,7 @@ This generates `compile_commands.json` for clangd.
3535

3636
```bash
3737
cmake --build build -j$(nproc)
38-
./build/main
38+
./build/vulkan
3939
```
4040

4141
Or use the shortcut:

0 commit comments

Comments
 (0)