diff options
| author | Kieran Cawthray <kieranc@gmail.com> | 2021-08-12 21:26:51 +0200 |
|---|---|---|
| committer | Kieran Cawthray <kieranc@gmail.com> | 2021-08-12 21:26:51 +0200 |
| commit | 52ee25e551f506cdaadfb6a62feda1d2aaa8497b (patch) | |
| tree | 6c5abc74c56400d222c105b9826fd5e58d3ce522 /.vscode/cmake-variants.json | |
| parent | 12aeb4688923a06d574b7aa7262626e7eab5b7f1 (diff) | |
| parent | 643077341b14a52819cbaf02abbd5fb56cdeb802 (diff) | |
Merge remote-tracking branch 'upstream/develop' into pinetimestyle-colorpicker
Diffstat (limited to '.vscode/cmake-variants.json')
| -rw-r--r-- | .vscode/cmake-variants.json | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/.vscode/cmake-variants.json b/.vscode/cmake-variants.json new file mode 100644 index 00000000..9c95a631 --- /dev/null +++ b/.vscode/cmake-variants.json @@ -0,0 +1,62 @@ +{ + "buildType": { + "default": "release", + "choices": { + "debug": { + "short": "Debug", + "long": "Emit debug information without performing optimizations", + "buildType": "Debug" + }, + "release": { + "short": "Release", + "long": "Perform optimizations", + "buildType": "Release" + } + } + }, + "programmer":{ + "default": "OpenOCD", + "choices":{ + "OpenOCD":{ + "short":"OpenOCD", + "long": "Use OpenOCD", + "settings":{ + "USE_OPENOCD":1 + } + }, + "JLink":{ + "short":"JLink", + "long": "Use JLink", + "settings":{ + "USE_JLINK":1 + } + }, + "GDB":{ + "short":"GDB", + "long": "Use GDB", + "settings":{ + "USE_GDB_CLIENT":1 + } + } + } + }, + "DFU": { + "default": "no", + "choices": { + "no": { + "short": "No DFU", + "long": "Do not build DFU", + "settings": { + "BUILD_DFU":"0" + } + }, + "yes": { + "short": "Build DFU", + "long": "Build DFU", + "settings": { + "BUILD_DFU":"1" + } + } + } + } +}
\ No newline at end of file |
