mirror of
https://github.com/obhq/obliteration.git
synced 2024-11-23 11:19:56 +00:00
Fixes application path for Windows
This commit is contained in:
parent
8b3cbff64e
commit
b11a74f383
15
.vscode/launch.json
vendored
15
.vscode/launch.json
vendored
@ -4,9 +4,20 @@
|
||||
"name": "Main",
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/build/src/obliteration",
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder}"
|
||||
"cwd": "${workspaceFolder}",
|
||||
"windows": {
|
||||
"program": "${workspaceFolder}/build/src/Debug/Obliteration.exe",
|
||||
"env": {
|
||||
"Path": "${env:Path};${env:CMAKE_PREFIX_PATH}\\bin"
|
||||
}
|
||||
},
|
||||
"linux": {
|
||||
"program": "${workspaceFolder}/build/src/obliteration"
|
||||
},
|
||||
"osx": {
|
||||
"program": "${workspaceFolder}/build/src/obliteration"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Kernel",
|
||||
|
Loading…
Reference in New Issue
Block a user