diff options
author | crupest <crupest@outlook.com> | 2021-10-16 22:30:29 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-10-16 22:30:29 +0800 |
commit | e9f586071a83b2551dbc7c98ccfaa8e6b3189f01 (patch) | |
tree | 1191207902f833584517df87d4b1fa7d7ce5783b /.vscode/launch.json | |
parent | ed368423531b24e8735db0afe38c7486145caa56 (diff) | |
download | cru-e9f586071a83b2551dbc7c98ccfaa8e6b3189f01.tar.gz cru-e9f586071a83b2551dbc7c98ccfaa8e6b3189f01.tar.bz2 cru-e9f586071a83b2551dbc7c98ccfaa8e6b3189f01.zip |
...
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..28cdad38 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,16 @@ +{ + // 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": [ + { + "name": "Debug", + "type": "lldb-mi", + "request": "launch", + "target": "./build/demo_input_method", + "cwd": "${workspaceRoot}", + "valuesFormatting": "parseText" + } + ] +} |