summaryrefslogtreecommitdiff
path: root/.vscode/cmake-variants.json
diff options
context:
space:
mode:
authorRiku Isokoski <riksu9000@gmail.com>2021-08-14 22:53:35 +0300
committerRiku Isokoski <riksu9000@gmail.com>2021-08-14 22:53:35 +0300
commitc3d8ee14fe7b0e00627e1f12d4c6654c60fc3b72 (patch)
tree3f87ed874ff358a75b8314d79327e46fb7ced927 /.vscode/cmake-variants.json
parentd307c6bd9ebd5e0af166ba9b4a491eb284b10b1d (diff)
parentdec4bab33496527e43850742a4b3dafd753eab83 (diff)
Merge branch 'develop' into refresh_rework
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