mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #508 from ohagendorf/develop_coide
[Export] CoIDE - include files are in the projectpull/515/head
commit
54101fc93d
|
@ -25,6 +25,8 @@ class CoIDE(Exporter):
|
|||
TARGETS = [
|
||||
'KL25Z',
|
||||
'KL05Z',
|
||||
'LPC1768',
|
||||
'ARCH_PRO',
|
||||
'DISCO_F407VG',
|
||||
'NUCLEO_F401RE',
|
||||
'NUCLEO_F411RE'
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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'),
|
||||
|
|
Loading…
Reference in New Issue