31ebcee8946a00846d91afe9914d90b169d1ea68none
CLAUDE.mdTool: claude-code# Dusklight VR mod — working notes
Twilight Princess PC port ("dusklight") with an in-progress VR mod.
## Build workflow
- `cmake --build --preset windows-msvc-relwithdebinfo` needs the MSVC dev
environment loaded first (plain shells fail with missing standard headers).
Use a batch file: `call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat"`
then `cd /d C:\Users\joeyw\dusklight && cmake --build --preset windows-msvc-relwithdebinfo`,
invoked via `cmd //c.claudeTool: claude-codenone