Skip to content

Commit

Permalink
Fix test EXE directory
Browse files Browse the repository at this point in the history
  • Loading branch information
vinocher-bc committed Apr 9, 2024
1 parent 9aad86c commit 36bcdd3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@
"type": "swift-lldb",
"request": "launch",
"name": "test_app",
"program": "${workspaceFolder:swiftwinrt}\\out\\${command:cmake.activeBuildPresetName}\\bin\\test_app.exe",
"program": "${workspaceFolder}\\out\\${command:cmake.activeBuildPresetName}\\bin\\test_app.exe",
"args": [],
"cwd": "${workspaceFolder:swiftwinrt}/tests",
"cwd": "${workspaceFolder}/tests",
"preLaunchTask": "Install"
},
{
"type": "cppvsdbg",
"request": "launch",
"name": "test_app (pdb)",
"program": "${workspaceFolder:swiftwinrt}\\out\\${command:cmake.activeBuildPresetName}\\bin\\test_app",
"program": "${workspaceFolder}\\out\\${command:cmake.activeBuildPresetName}\\bin\\test_app",
"args": [],
"cwd": "${workspaceFolder:swiftwinrt}/tests",
"cwd": "${workspaceFolder}/tests",
"preLaunchTask": "Install"
}
]
Expand Down

0 comments on commit 36bcdd3

Please sign in to comment.