diff options
| author | Yuqian Yang <crupest@crupest.life> | 2025-11-20 03:00:16 +0800 |
|---|---|---|
| committer | Yuqian Yang <crupest@crupest.life> | 2025-11-20 03:00:16 +0800 |
| commit | 478b4cdce5c584c294d38f84a0131f239d9af88f (patch) | |
| tree | 74ad9ae123869195c4ce845f9ce34c4425a62b3d /CMakeSettings.json | |
| parent | 2eb34dfc3dd3ca718da6ebf049886b4ae140b332 (diff) | |
| download | cru-478b4cdce5c584c294d38f84a0131f239d9af88f.tar.gz cru-478b4cdce5c584c294d38f84a0131f239d9af88f.tar.bz2 cru-478b4cdce5c584c294d38f84a0131f239d9af88f.zip | |
Fix use after free in render object.
Diffstat (limited to 'CMakeSettings.json')
| -rw-r--r-- | CMakeSettings.json | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/CMakeSettings.json b/CMakeSettings.json new file mode 100644 index 00000000..f7e15ea2 --- /dev/null +++ b/CMakeSettings.json @@ -0,0 +1,28 @@ +{ + "configurations": [ + { + "name": "x64-Debug", + "generator": "Ninja", + "configurationType": "Debug", + "inheritEnvironments": [ "msvc_x64_x64" ], + "buildRoot": "${projectDir}\\out\\build\\${name}", + "installRoot": "${projectDir}\\out\\install\\${name}", + "cmakeCommandArgs": "", + "buildCommandArgs": "", + "ctestCommandArgs": "" + }, + { + "name": "x64-Debug-Asan", + "generator": "Ninja", + "configurationType": "Debug", + "buildRoot": "${projectDir}\\out\\build\\${name}", + "installRoot": "${projectDir}\\out\\install\\${name}", + "cmakeCommandArgs": "", + "buildCommandArgs": "", + "ctestCommandArgs": "", + "inheritEnvironments": [ "msvc_x64_x64" ], + "addressSanitizerEnabled": true, + "variables": [] + } + ] +} |
