1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-30 22:38:58 +00:00

Always force debug version in VSCode.

This commit is contained in:
EliteMasterEric 2024-02-15 17:23:57 -05:00
parent c896300b63
commit 04b73dac9f

26
.vscode/settings.json vendored
View file

@ -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,