Skip to content
This repository was archived by the owner on Aug 2, 2025. It is now read-only.

Commit 3d940c5

Browse files
authored
Update 09_Finishing_up.md
Add compile commands to reduce confusion
1 parent a04ee0d commit 3d940c5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

docs/03_Getting_started/09_Finishing_up.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,11 @@ device.destroy_buffer(buffer_id);
3838
## Running the code
3939

4040
You have now completed the Daxa tutorial! If you now run the code, you should have a triangle appearing in the window!
41+
Running the code with the VSCode debugger should be as simple as pressing the debug button, though you may need to create a launch.json if the working directory is wrong.
42+
43+
Otherwise, you can manually run the CMake commands to configure, build, and then run the executable directly like so:
44+
```
45+
cmake --preset=Debug
46+
cmake --build build/Debug
47+
./build/Debug/learndaxa.exe
48+
```

0 commit comments

Comments
 (0)