We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5321a75 + c921717 commit b1d3669Copy full SHA for b1d3669
tools/export/vscode/__init__.py
@@ -63,15 +63,18 @@ def generate(self):
63
"configurations": [
64
{
65
"name": "Windows",
66
- "includePath": [x.replace("/", "\\") for x in all_directories]
+ "includePath": [x.replace("/", "\\") for x in all_directories],
67
+ "defines": [symbol for symbol in self.toolchain.get_symbols()]
68
},
69
70
"name": "Mac",
- "includePath": all_directories
71
+ "includePath": all_directories,
72
73
74
75
"name": "Linux",
76
77
78
}
79
]
80
0 commit comments