This commit is contained in:
douboer
2025-09-07 12:39:28 +08:00
parent 1ba01e3c64
commit 4d033257fe
5714 changed files with 15866 additions and 1032 deletions

22
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,22 @@
{
"configurations": [
{
"type": "swift",
"request": "launch",
"args": [],
"cwd": "${workspaceFolder:ibook}/ipad_app",
"name": "Debug IpadReaderCLI (ipad_app)",
"program": "${workspaceFolder:ibook}/ipad_app/.build/debug/IpadReaderCLI",
"preLaunchTask": "swift: Build Debug IpadReaderCLI (ipad_app)"
},
{
"type": "swift",
"request": "launch",
"args": [],
"cwd": "${workspaceFolder:ibook}/ipad_app",
"name": "Release IpadReaderCLI (ipad_app)",
"program": "${workspaceFolder:ibook}/ipad_app/.build/release/IpadReaderCLI",
"preLaunchTask": "swift: Build Release IpadReaderCLI (ipad_app)"
}
]
}