blob: f49dedaf1c650580e6d55b807a7316505380b5c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
{%- if includes is defined %}
{% for incl in includes -%}
include({{ incl }})
{% endfor -%}
{%- endif -%}
{%- if subdirs|length %}
{% for subdir in subdirs -%}
add_subdirectory({{ subdir }})
{% endfor -%}
{%- endif -%}
|