Skip to content

Commit b9320e3

Browse files
committed
Add VS Code configuration files
1 parent 5393dc7 commit b9320e3

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

.vscode/launch.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"configurations": [
3+
{
4+
"type": "lldb",
5+
"request": "launch",
6+
"args": [],
7+
"cwd": "${workspaceFolder:ATCryptography}",
8+
"name": "Debug App",
9+
"program": "${workspaceFolder:ATCryptography}/.build/debug/App",
10+
"preLaunchTask": "swift: Build Debug App"
11+
},
12+
{
13+
"type": "lldb",
14+
"request": "launch",
15+
"args": [],
16+
"cwd": "${workspaceFolder:ATCryptography}",
17+
"name": "Release App",
18+
"program": "${workspaceFolder:ATCryptography}/.build/release/App",
19+
"preLaunchTask": "swift: Build Release App"
20+
}
21+
]
22+
}

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

.vscode/tasks.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "Build",
6+
"type": "shell",
7+
"command": "swift build && .build/debug",
8+
"presentation": {
9+
"reveal": "always"
10+
},
11+
"group": {
12+
"kind": "build",
13+
"isDefault": true
14+
}
15+
}
16+
]
17+
}

0 commit comments

Comments
 (0)