mirror of
https://git.tonybark.com/tonytins/swiftlyfox.git
synced 2026-05-12 07:43:30 -04:00
Added Square and Equilateral Triangle classes
This commit is contained in:
parent
1c40a688e4
commit
53ba21d774
9 changed files with 154 additions and 45 deletions
44
.vscode/launch.json
vendored
Normal file
44
.vscode/launch.json
vendored
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
"configurations": [
|
||||
{
|
||||
"type": "swift",
|
||||
"request": "launch",
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder:swiftlyfox}",
|
||||
"name": "Debug swiftyfox",
|
||||
"target": "swiftyfox",
|
||||
"configuration": "debug",
|
||||
"preLaunchTask": "swift: Build Debug swiftyfox"
|
||||
},
|
||||
{
|
||||
"type": "swift",
|
||||
"request": "launch",
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder:swiftlyfox}",
|
||||
"name": "Release swiftyfox",
|
||||
"target": "swiftyfox",
|
||||
"configuration": "release",
|
||||
"preLaunchTask": "swift: Build Release swiftyfox"
|
||||
},
|
||||
{
|
||||
"type": "swift",
|
||||
"request": "launch",
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder:swiftlyfox}",
|
||||
"name": "Debug swiftlyfox",
|
||||
"target": "swiftlyfox",
|
||||
"configuration": "debug",
|
||||
"preLaunchTask": "swift: Build Debug swiftlyfox"
|
||||
},
|
||||
{
|
||||
"type": "swift",
|
||||
"request": "launch",
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder:swiftlyfox}",
|
||||
"name": "Release swiftlyfox",
|
||||
"target": "swiftlyfox",
|
||||
"configuration": "release",
|
||||
"preLaunchTask": "swift: Build Release swiftlyfox"
|
||||
}
|
||||
]
|
||||
}
|
||||
20
.vscode/tasks.json
vendored
Normal file
20
.vscode/tasks.json
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "swift: Build swiftlyfox",
|
||||
"type": "shell",
|
||||
"command": "swift",
|
||||
"args": [
|
||||
"build",
|
||||
"--swift-sdk",
|
||||
"swift-6.3.1-RELEASE_wasm",
|
||||
"--product",
|
||||
"swiftlyfox"
|
||||
],
|
||||
"group": "build",
|
||||
"problemMatcher": [],
|
||||
"detail": "Custom build for WASM target"
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue