Skip to content

Commit 22a022d

Browse files
VSCode Settings: added launch configuration for Tutorial29_OIT
1 parent c507e83 commit 22a022d

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

.vscode/launch.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -669,6 +669,25 @@
669669
}
670670
]
671671
},
672+
{
673+
"name": "Tutorial29_OIT",
674+
"type": "cppdbg",
675+
"request": "launch",
676+
"program": "${workspaceFolder}/build/DiligentSamples/Tutorials/Tutorial29_OIT/Tutorial29_OIT",
677+
"args": ["--mode", "vk"],
678+
"stopAtEntry": false,
679+
"cwd": "${workspaceFolder}/DiligentSamples/Tutorials/Tutorial29_OIT/assets",
680+
"environment": [],
681+
"externalConsole": true,
682+
"MIMode": "gdb",
683+
"setupCommands": [
684+
{
685+
"description": "Enable pretty-printing for gdb",
686+
"text": "-enable-pretty-printing",
687+
"ignoreFailures": true
688+
}
689+
]
690+
},
672691
{
673692
"name": "DiligentCoreTest",
674693
"type": "cppdbg",

.vscode/settings.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"cmake.buildDirectory": "${workspaceRoot}/build",
3-
"cmake.configureSettings": { "DILIGENT_BUILD_TESTS": "TRUE", "CMAKE_INSTALL_PREFIX": "install"},
3+
"cmake.configureSettings": { "DILIGENT_BUILD_TESTS": "TRUE", "DILIGENT_NO_FORMAT_VALIDATION": "FALSE", "CMAKE_INSTALL_PREFIX": "install"},
44
"files.associations": {
55
"*.tcc": "cpp",
66
"ostream": "cpp",
@@ -16,7 +16,6 @@
1616
"condition_variable": "cpp",
1717
"csignal": "cpp",
1818
"cstddef": "cpp",
19-
"cstdint": "cpp",
2019
"cstdio": "cpp",
2120
"cstdlib": "cpp",
2221
"cstring": "cpp",

0 commit comments

Comments
 (0)