mirror of https://github.com/ARMmbed/mbed-os.git
7 lines
179 B
Cheetah
7 lines
179 B
Cheetah
|
{% for d in defines -%}
|
||
|
{% if d[0] == 'D' %}#define {% else %}#undef{% endif %} {{ d[1]|join(' ')}}
|
||
|
{% endfor %}
|
||
|
{% for i in forced_includes -%}
|
||
|
#include "{{i}}"
|
||
|
{% endfor %}
|