File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ def progen_get_project_data(self):
64
64
'includes' : {
65
65
'Include Files' : self .resources .headers ,
66
66
},
67
+ 'build_dir' :'.build' ,
67
68
'target' : [TARGET_MAP [self .target ].progen ['target' ]],
68
69
'macros' : self .get_symbols (),
69
70
'export_dir' : [self .inputDir ],
Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ def generate(self):
67
67
68
68
project_data ['tool_specific' ] = {}
69
69
project_data ['tool_specific' ].update (tool_specific )
70
+ project_data ['common' ]['build_dir' ] = os .path .join (project_data ['common' ]['build_dir' ], 'iar_arm' )
70
71
self .progen_gen_file ('iar_arm' , project_data )
71
72
72
73
# Currently not used, we should reuse folder_name to create virtual folders
Original file line number Diff line number Diff line change @@ -73,5 +73,6 @@ def generate(self):
73
73
project_data ['common' ]['macros' ].pop (i )
74
74
i += 1
75
75
project_data ['common' ]['macros' ].append ('__ASSERT_MSG' )
76
+ project_data ['common' ]['build_dir' ] = join (project_data ['common' ]['build_dir' ], 'uvision4' )
76
77
self .progen_gen_file ('uvision' , project_data )
77
78
You can’t perform that action at this time.
0 commit comments