mirror of
https://github.com/prime31/FNA-VSCode-Template.git
synced 2025-10-31 21:50:44 +07:00
Debugger now uses the DYLD_LIBRARY_PATH
This commit is contained in:
parent
d7b64583ec
commit
8edae2cf04
7
project_name/.vscode/launch.json
vendored
7
project_name/.vscode/launch.json
vendored
@ -10,7 +10,12 @@
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/bin/Debug/project_name.exe",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"preLaunchTask": "Build (Debug)"
|
||||
"preLaunchTask": "Build (Debug)",
|
||||
"osx":{
|
||||
"env": {
|
||||
"DYLD_LIBRARY_PATH": "${workspaceFolder}/bin/Debug/osx/"
|
||||
},
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Attach",
|
||||
|
||||
4
project_name/.vscode/tasks.json
vendored
4
project_name/.vscode/tasks.json
vendored
@ -12,9 +12,9 @@
|
||||
{
|
||||
"label": "Clean Project",
|
||||
"type": "shell",
|
||||
"command": "msbuild /t:clean /p:configuration=Debug; msbuild /t:clean /p:configuration=Release",
|
||||
"command": "msbuild /t:clean /p:configuration=Debug ; msbuild /t:clean /p:configuration=Release",
|
||||
"group": "build",
|
||||
"problemMatcher": "$msCompile"
|
||||
"problemMatcher": "$msCompile",
|
||||
},
|
||||
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user