mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #3052 from theotherjimmy/name-eclipse-exporters
Exporters - Name the eclipse exporters and remove relpath computationspull/3076/head
commit
9138f62742
|
@ -31,21 +31,20 @@ class Eclipse(Makefile):
|
|||
self.gen_file('cdt/necessary_software.tmpl', ctx,
|
||||
join('eclipse-extras','necessary_software.p2f'))
|
||||
|
||||
cproj = relpath('.cproject',self.export_dir)
|
||||
self.gen_file('cdt/.cproject.tmpl', ctx,
|
||||
cproj)
|
||||
proj = relpath('.project',self.export_dir)
|
||||
self.gen_file('cdt/.project.tmpl', ctx,
|
||||
proj)
|
||||
self.gen_file('cdt/.cproject.tmpl', ctx, '.cproject')
|
||||
self.gen_file('cdt/.project.tmpl', ctx, '.project')
|
||||
|
||||
|
||||
class EclipseGcc(Eclipse, GccArm):
|
||||
LOAD_EXE = True
|
||||
NAME = "Eclipse-GCC-ARM"
|
||||
|
||||
class EclipseArmc5(Eclipse, Armc5):
|
||||
LOAD_EXE = False
|
||||
NAME = "Eclipse-Armc5"
|
||||
|
||||
class EclipseIAR(Eclipse, IAR):
|
||||
LOAD_EXE = True
|
||||
NAME = "Eclipse-IAR"
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue