Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
P0ulpy committed Jul 6, 2024
2 parents 66eec96 + 75eff80 commit 512cd01
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 9 deletions.
48 changes: 40 additions & 8 deletions .vscode/raycasting-engine.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,16 @@
"type": "cppvsdbg",
"request": "launch",
"preLaunchTask": "CMake build Debug",
"program": "${workspaceFolder}/out/Debug/Debug/raycasting-engine-app.exe",
"cwd": "${workspaceFolder}/out/Debug/Debug",
"program": "${command:cmake.launchTargetPath}",
"cwd": "${workspaceFolder}",
"environment": [
{
// add the directory where our target was built to the PATHs
// it gets resolved by CMake Tools:
"name": "PATH",
"value": "${env:PATH}:${command:cmake.getLaunchTargetDirectory}"
}
],
"requireExactSource": false,
"console": "newExternalWindow"
},
Expand All @@ -28,8 +36,16 @@
"type": "cppvsdbg",
"request": "launch",
"preLaunchTask": "CMake build Release",
"program": "${workspaceFolder}/out/Release/Release/raycasting-engine-app.exe",
"cwd": "${workspaceFolder}/out/Release/Release",
"program": "${command:cmake.launchTargetPath}",
"cwd": "${workspaceFolder}",
"environment": [
{
// add the directory where our target was built to the PATHs
// it gets resolved by CMake Tools:
"name": "PATH",
"value": "${env:PATH}:${command:cmake.getLaunchTargetDirectory}"
}
],
"requireExactSource": false,
"console": "newExternalWindow"
},
Expand All @@ -38,8 +54,16 @@
"type": "cppdbg",
"request": "launch",
"preLaunchTask": "CMake build Debug",
"program": "${workspaceFolder}/out/Debug/raycasting-engine-app.exe",
"cwd": "${workspaceFolder}/out/Debug",
"program": "${command:cmake.launchTargetPath}",
"cwd": "${workspaceFolder}",
"environment": [
{
// add the directory where our target was built to the PATHs
// it gets resolved by CMake Tools:
"name": "PATH",
"value": "${env:PATH}:${command:cmake.getLaunchTargetDirectory}"
}
],
"MIMode": "gdb",
"miDebuggerPath": "gdb.exe",
"externalConsole": true,
Expand All @@ -57,8 +81,16 @@
"type": "cppdbg",
"request": "launch",
"preLaunchTask": "CMake build Release",
"program": "${workspaceFolder}/out/Release/raycasting-engine-app.exe",
"cwd": "${workspaceFolder}/out/Release",
"program": "${command:cmake.launchTargetPath}",
"cwd": "${workspaceFolder}",
"environment": [
{
// add the directory where our target was built to the PATHs
// it gets resolved by CMake Tools:
"name": "PATH",
"value": "${env:PATH}:${command:cmake.getLaunchTargetDirectory}"
}
],
"MIMode": "gdb",
"miDebuggerPath": "gdb.exe",
"externalConsole": true,
Expand Down
2 changes: 1 addition & 1 deletion vcpkg
Submodule vcpkg updated 953 files

0 comments on commit 512cd01

Please sign in to comment.