diff options
| author | Jay Kwak <82421531+jkwak-work@users.noreply.github.com> | 2025-02-13 13:15:43 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-13 13:15:43 -0800 |
| commit | 4c8edd7fbe63100294301a2e210dad21e5263b8a (patch) | |
| tree | dee0d45d08d1886c9c283621133c5076e6f99e22 /CMakePresets.json | |
| parent | adde2626720f23a5fd7151f6fb9109db14fc9263 (diff) | |
Add CMake build target vs2019-dev that enables IR break (#6354)
This commit adds a CMake build target `vs2019-dev`. The suffix `-dev`
enables the IR break ability.
Co-authored-by: Yong He <yonghe@outlook.com>
Diffstat (limited to 'CMakePresets.json')
| -rw-r--r-- | CMakePresets.json | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/CMakePresets.json b/CMakePresets.json index 86ba402b2..3f8c92a51 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -47,6 +47,15 @@ "generator": "Visual Studio 16 2019" }, { + "name": "vs2019-dev", + "inherits": "msvc-base", + "description": "Visual Studio 2019 project with debug assisting features", + "generator": "Visual Studio 16 2019", + "cacheVariables": { + "SLANG_ENABLE_IR_BREAK_ALLOC": "TRUE" + } + }, + { "name": "vs2022", "inherits": "msvc-base", "description": "Visual Studio 2022 project", |
