File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -68,17 +68,17 @@ def generate(self):
68
68
{
69
69
"name" : "Windows" ,
70
70
"forcedInclude" : [
71
- "${workspaceRoot}\\ mbed_config.h"
71
+ "${workspaceRoot}/ mbed_config.h"
72
72
],
73
73
"compilerPath" : self .toolchain .cppc [0 ],
74
74
"intelliSenseMode" : "gcc-x64" ,
75
- "includePath" : [ x . replace ( "/" , " \\ " ) for x in all_directories ] ,
75
+ "includePath" : all_directories ,
76
76
"defines" : [symbol for symbol in self .toolchain .get_symbols ()]
77
77
},
78
78
{
79
79
"name" : "Mac" ,
80
80
"forcedInclude" : [
81
- "${workspaceRoot}\\ mbed_config.h"
81
+ "${workspaceRoot}/ mbed_config.h"
82
82
],
83
83
"compilerPath" : self .toolchain .cppc [0 ],
84
84
"includePath" : all_directories ,
@@ -87,7 +87,7 @@ def generate(self):
87
87
{
88
88
"name" : "Linux" ,
89
89
"forcedInclude" : [
90
- "${workspaceRoot}\\ mbed_config.h"
90
+ "${workspaceRoot}/ mbed_config.h"
91
91
],
92
92
"compilerPath" : self .toolchain .cppc [0 ],
93
93
"includePath" : all_directories ,
You can’t perform that action at this time.
0 commit comments