Update vscode & CMake related points

This commit is contained in:
Tilen Majerle 2022-05-18 23:54:43 +02:00
parent d9fc05ce1c
commit 0f2a330146
2 changed files with 2 additions and 2 deletions

2
.vscode/launch.json vendored
View File

@ -8,7 +8,7 @@
"name": "(Windows) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${command:cmake.buildDirectory}\\LwLibPROJECT.exe",
"program": "${command:cmake.launchTargetPath}",
"miDebuggerPath": "c:\\msys64\\mingw64\\bin\\gdb.exe",
"args": [],
"stopAtEntry": false,

2
.vscode/tasks.json vendored
View File

@ -38,7 +38,7 @@
{
"type": "shell",
"label": "Run application",
"command": "${command:cmake.buildDirectory}\\LwLibPROJECT.exe",
"command": "${command:cmake.launchTargetPath}",
"args": [],
"problemMatcher": [],
},