Add VSCode/Cursor Sweetpad setup

This commit is contained in:
Thomas Ricouard 2024-10-18 09:05:06 +02:00
parent 6f48f67a01
commit d8f2b0f3ae
2 changed files with 17 additions and 1 deletions

2
.gitignore vendored
View file

@ -90,3 +90,5 @@ fastlane/test_output
iOSInjectionProject/ iOSInjectionProject/
.DS_Store .DS_Store
IceCubesApp.xcconfig IceCubesApp.xcconfig
*.resolved
buildServer.json

14
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,14 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "sweetpad-lldb",
"request": "launch",
"name": "Attach to running app (SweetPad)",
"preLaunchTask": "sweetpad: launch"
}
]
}