Clone of official tools
export/e2studio/__init__.py
- Committer:
- theotherjimmy
- Date:
- 2017-10-25
- Revision:
- 41:2a77626a4c21
- Parent:
- 40:7d3fa6b99b2b
- Child:
- 43:2a7da56ebd24
File content as of revision 41:2a77626a4c21:
""" mbed SDK Copyright (c) 2011-2016 ARM Limited Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. """ from tools.export.gnuarmeclipse import GNUARMEclipse class E2Studio(GNUARMEclipse): NAME = 'e2 studio' TOOLCHAIN = 'GCC_ARM' TARGETS = [ 'RZ_A1H', 'VK_RZ_A1H', ] # override def generate(self): jinja_ctx = self.collect_tmpl_vars() print print 'Create a e2 studio C++ managed project' print 'Project name: {0}'.format(self.project_name) print 'Target: {0}'.format(self.toolchain.target.name) print 'Toolchain: {0}'.format(self.TOOLCHAIN) self.gen_file('e2studio/.cproject.tmpl', jinja_ctx, '.cproject', trim_blocks=True, lstrip_blocks=True) self.gen_file('e2studio/.gdbinit.tmpl', jinja_ctx, '.gdbinit') self.gen_file('e2studio/launch.tmpl', jinja_ctx, '%s OpenOCD.launch' % self.project_name, trim_blocks=True, lstrip_blocks=True) self.gen_file('gnuarmeclipse/.project.tmpl', jinja_ctx, '.project', trim_blocks=True, lstrip_blocks=True) self.gen_file('gnuarmeclipse/mbedignore.tmpl', jinja_ctx, '.mbedignore') self.gen_file('gnuarmeclipse/makefile.targets.tmpl', jinja_ctx, 'makefile.targets', trim_blocks=True, lstrip_blocks=True) print print 'Done. Import the project located at \'{0}\' in e2 studio.'.format(self.project_name)