summaryrefslogtreecommitdiff
path: root/.vscode/cmake-variants.json
diff options
context:
space:
mode:
authorhubmartin <hub.martin@gmail.com>2021-08-11 22:00:55 +0200
committerhubmartin <hub.martin@gmail.com>2021-08-11 22:00:55 +0200
commit0d083a2beac118234f07dacee42f0925420abb42 (patch)
tree14b23e3113b8cf60cf5fa47b4dadebf654181d88 /.vscode/cmake-variants.json
parentabd8f343e48bdfa1dc4c8604d843a5c2d8071bc0 (diff)
parent643077341b14a52819cbaf02abbd5fb56cdeb802 (diff)
Merge branch 'develop' into pinmap
Diffstat (limited to '.vscode/cmake-variants.json')
-rw-r--r--.vscode/cmake-variants.json62
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