Merge pull request #508 from ohagendorf/develop_coide

[Export] CoIDE -  include files are in the project
pull/515/head
Martin Kojtal 2014-09-27 12:25:26 +01:00
commit 54101fc93d
9 changed files with 28 additions and 10 deletions

View File

@ -25,6 +25,8 @@ class CoIDE(Exporter):
TARGETS = [
'KL25Z',
'KL05Z',
'LPC1768',
'ARCH_PRO',
'DISCO_F407VG',
'NUCLEO_F401RE',
'NUCLEO_F411RE'

View File

@ -79,7 +79,10 @@
<Components path="./"/>
<Files>
{% for file in source_files %}
<File name="{{file.name}}" path="{{file.path}}" type="{{file.type}}"/>
<File name="sources/{{file.path}}" path="{{file.path}}" type="{{file.type}}"/>
{% endfor %}
{% for file in header_files %}
<File name="headers/{{file.path}}" path="{{file.path}}" type="{{file.type}}"/>
{% endfor %}
</Files>
</Project>

View File

@ -81,10 +81,10 @@
<Components path="./"/>
<Files>
{% for file in source_files %}
<File name="sourcen/{{file.path}}" path="{{file.path}}" type="{{file.type}}"/>
<File name="sources/{{file.path}}" path="{{file.path}}" type="{{file.type}}"/>
{% endfor %}
{% for file in header_files %}
<File name="includes/{{file.path}}" path="{{file.path}}" type="{{file.type}}"/>
<File name="headers/{{file.path}}" path="{{file.path}}" type="{{file.type}}"/>
{% endfor %}
</Files>
</Project>

View File

@ -79,7 +79,10 @@
<Components path="./"/>
<Files>
{% for file in source_files %}
<File name="{{file.name}}" path="{{file.path}}" type="{{file.type}}"/>
<File name="sources/{{file.path}}" path="{{file.path}}" type="{{file.type}}"/>
{% endfor %}
{% for file in header_files %}
<File name="headers/{{file.path}}" path="{{file.path}}" type="{{file.type}}"/>
{% endfor %}
</Files>
</Project>

View File

@ -79,7 +79,10 @@
<Components path="./"/>
<Files>
{% for file in source_files %}
<File name="{{file.name}}" path="{{file.path}}" type="{{file.type}}"/>
<File name="sources/{{file.path}}" path="{{file.path}}" type="{{file.type}}"/>
{% endfor %}
{% for file in header_files %}
<File name="headers/{{file.path}}" path="{{file.path}}" type="{{file.type}}"/>
{% endfor %}
</Files>
</Project>

View File

@ -79,7 +79,10 @@
<Components path="./"/>
<Files>
{% for file in source_files %}
<File name="{{file.name}}" path="{{file.path}}" type="{{file.type}}"/>
<File name="sources/{{file.path}}" path="{{file.path}}" type="{{file.type}}"/>
{% endfor %}
{% for file in header_files %}
<File name="headers/{{file.path}}" path="{{file.path}}" type="{{file.type}}"/>
{% endfor %}
</Files>
</Project>

View File

@ -81,10 +81,10 @@
<Components path="./"/>
<Files>
{% for file in source_files %}
<File name="sourcen/{{file.path}}" path="{{file.path}}" type="{{file.type}}"/>
<File name="sources/{{file.path}}" path="{{file.path}}" type="{{file.type}}"/>
{% endfor %}
{% for file in header_files %}
<File name="includes/{{file.path}}" path="{{file.path}}" type="{{file.type}}"/>
<File name="headers/{{file.path}}" path="{{file.path}}" type="{{file.type}}"/>
{% endfor %}
</Files>
</Project>

View File

@ -81,10 +81,10 @@
<Components path="./"/>
<Files>
{% for file in source_files %}
<File name="sourcen/{{file.path}}" path="{{file.path}}" type="{{file.type}}"/>
<File name="sources/{{file.path}}" path="{{file.path}}" type="{{file.type}}"/>
{% endfor %}
{% for file in header_files %}
<File name="includes/{{file.path}}" path="{{file.path}}" type="{{file.type}}"/>
<File name="headers/{{file.path}}" path="{{file.path}}" type="{{file.type}}"/>
{% endfor %}
</Files>
</Project>

View File

@ -76,6 +76,10 @@ if __name__ == '__main__':
setup_test_user_prj()
for toolchain, target in [
('coide', 'KL05Z'),
('coide', 'KL25Z'),
('coide', 'LPC1768'),
('coide', 'ARCH_PRO'),
('coide', 'DISCO_F407VG'),
('coide', 'NUCLEO_F401RE'),
('coide', 'NUCLEO_F411RE'),