Skip to content

Commit 86a0a08

Browse files
committed
Merge branch 'main' of github.com:PMarcL/zgui-SDL3-GPU-example
2 parents 079c805 + a2d8be3 commit 86a0a08

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,19 @@ from [imgui](https://github.com/ocornut/imgui/tree/master) and
1212
[this one](https://github.com/zig-gamedev/zig-gamedev/blob/main/samples/minimal_zgui_glfw_gl/src/minimal_zgui_glfw_gl.zig)
1313
from the [zig-gamedev](https://github.com/zig-gamedev/zig-gamedev/tree/main) samples.
1414

15-
1615
Finally, this was only tested on Windows, but should work on other platforms.
1716

1817
## Building and Running
1918

2019
```
21-
# 1. Build the SDL3 .dll
20+
# 1. Fetch the SDL repo
21+
git submodule init
22+
git submodule udpate
23+
# 2. Build the SDL3 .dll
2224
cd SDL
2325
mkdir build && cd build
2426
cmake -G "MinGW Makefiles" .. && cmake --build .
2527
cd ../..
26-
# Run the example
28+
# 3. Run the example
2729
zig build run
2830
```

0 commit comments

Comments
 (0)