summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2024-07-11 16:12:41 -0700
committerGitHub <noreply@github.com>2024-07-11 16:12:41 -0700
commit24f8999c892a9c4d108616c08d714e8dea562707 (patch)
treec3632963f8a940503b46ae2d82b70fedaaf0e1db /docs
parent977e4b21d69406b0b68c5963f50489d7433db830 (diff)
Fix incorrect codegen when returning initializer list as existential value. (#4618)
* Add `dev` cmake preset. * Fix incorrect codegen when returning initializer list as existential value. * Fix cmake. * Fixup.
Diffstat (limited to 'docs')
-rw-r--r--docs/building.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/building.md b/docs/building.md
index a42f4cde6..2b2435302 100644
--- a/docs/building.md
+++ b/docs/building.md
@@ -40,11 +40,13 @@ cmake --build --preset release # or --preset debug
For Visual Studio run:
```bash
-cmake --preset vs2022 # or --preset vs2019
+cmake --preset vs2022 # or 'vs2019' or `vs2022-dev`
start devenv ./build/slang.sln # to optionally open the project in Visual Studio
cmake --build --preset release # to build from the CLI
```
+The `vs2022-dev` preset turns on features that makes debugging easy.
+
## Testing
```bash