mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-14 19:25:16 -05:00
Always force debug version in VSCode.
This commit is contained in:
parent
c896300b63
commit
04b73dac9f
1 changed files with 15 additions and 11 deletions
26
.vscode/settings.json
vendored
26
.vscode/settings.json
vendored
|
@ -93,57 +93,61 @@
|
||||||
{
|
{
|
||||||
"label": "Windows / Debug",
|
"label": "Windows / Debug",
|
||||||
"target": "windows",
|
"target": "windows",
|
||||||
"args": ["-debug"]
|
"args": ["-debug", "-DFORCE_DEBUG_VERSION"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Windows / Debug (FlxAnimate Test)",
|
"label": "Windows / Debug (FlxAnimate Test)",
|
||||||
"target": "windows",
|
"target": "windows",
|
||||||
"args": ["-debug", "-DANIMATE"]
|
"args": ["-debug", "-DANIMATE", "-DFORCE_DEBUG_VERSION"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Windows / Debug (Straight to Freeplay)",
|
"label": "Windows / Debug (Straight to Freeplay)",
|
||||||
"target": "windows",
|
"target": "windows",
|
||||||
"args": ["-debug", "-DFREEPLAY"]
|
"args": ["-debug", "-DFREEPLAY", "-DFORCE_DEBUG_VERSION"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Windows / Debug (Straight to Play - Bopeebo Normal)",
|
"label": "Windows / Debug (Straight to Play - Bopeebo Normal)",
|
||||||
"target": "windows",
|
"target": "windows",
|
||||||
"args": ["-debug", "-DSONG=bopeebo -DDIFFICULTY=normal"]
|
"args": [
|
||||||
|
"-debug",
|
||||||
|
"-DSONG=bopeebo -DDIFFICULTY=normal",
|
||||||
|
"-DFORCE_DEBUG_VERSION"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Windows / Debug (Conversation Test)",
|
"label": "Windows / Debug (Conversation Test)",
|
||||||
"target": "windows",
|
"target": "windows",
|
||||||
"args": ["-debug", "-DDIALOGUE"]
|
"args": ["-debug", "-DDIALOGUE", "-DFORCE_DEBUG_VERSION"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Windows / Debug (Straight to Chart Editor)",
|
"label": "Windows / Debug (Straight to Chart Editor)",
|
||||||
"target": "windows",
|
"target": "windows",
|
||||||
"args": ["-debug", "-DCHARTING"]
|
"args": ["-debug", "-DCHARTING", "-DFORCE_DEBUG_VERSION"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Windows / Debug (Straight to Animation Editor)",
|
"label": "Windows / Debug (Straight to Animation Editor)",
|
||||||
"target": "windows",
|
"target": "windows",
|
||||||
"args": ["-debug", "-DANIMDEBUG"]
|
"args": ["-debug", "-DANIMDEBUG", "-DFORCE_DEBUG_VERSION"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Windows / Debug (Latency Test)",
|
"label": "Windows / Debug (Latency Test)",
|
||||||
"target": "windows",
|
"target": "windows",
|
||||||
"args": ["-debug", "-DLATENCY"]
|
"args": ["-debug", "-DLATENCY", "-DFORCE_DEBUG_VERSION"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Windows / Debug (Waveform Test)",
|
"label": "Windows / Debug (Waveform Test)",
|
||||||
"target": "windows",
|
"target": "windows",
|
||||||
"args": ["-debug", "-DWAVEFORM"]
|
"args": ["-debug", "-DWAVEFORM", "-DFORCE_DEBUG_VERSION"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "HTML5 / Debug",
|
"label": "HTML5 / Debug",
|
||||||
"target": "html5",
|
"target": "html5",
|
||||||
"args": ["-debug"]
|
"args": ["-debug", "-DFORCE_DEBUG_VERSION"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "HTML5 / Debug (Watch)",
|
"label": "HTML5 / Debug (Watch)",
|
||||||
"target": "html5",
|
"target": "html5",
|
||||||
"args": ["-debug", "-watch"]
|
"args": ["-debug", "-watch", "-DFORCE_DEBUG_VERSION"]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"cmake.configureOnOpen": false,
|
"cmake.configureOnOpen": false,
|
||||||
|
|
Loading…
Reference in a new issue