Skip to content

Commit eda115d

Browse files
committed
Move atmelstudio to its own directory
1 parent fdfbde8 commit eda115d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

tools/export/atmelstudio.py renamed to tools/export/atmelstudio/__init__.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@
1515
limitations under the License.
1616
"""
1717
import uuid
18-
from exporters import Exporter
1918
from os.path import splitext, basename, dirname
2019

20+
from tools.export.exporters import Exporter
21+
2122

2223
class AtmelStudio(Exporter):
2324
NAME = 'AtmelStudio'
@@ -75,5 +76,5 @@ def generate(self):
7576
}
7677
ctx.update(self.flags)
7778
target = self.target.lower()
78-
self.gen_file('atmelstudio6_2.atsln.tmpl', ctx, '%s.atsln' % self.project_name)
79-
self.gen_file('atmelstudio6_2.cppproj.tmpl', ctx, '%s.cppproj' % self.project_name)
79+
self.gen_file('atmelstudio/atsln.tmpl', ctx, '%s.atsln' % self.project_name)
80+
self.gen_file('atmelstudio/cppproj.tmpl', ctx, '%s.cppproj' % self.project_name)

0 commit comments

Comments
 (0)