aboutsummaryrefslogtreecommitdiffstats
path: root/build/export_generators/ide-gradle/settings.gradle.kts.jinja
blob: ca3231945314371d97e2c2ddaf1d35977976744d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
rootProject.name = "{{ project_name }}"

{% if subdirs|length > 1 -%}
{#- Apply list if not only root in it -#}
{%-    for subdir in subdirs -%}
{%-        set classname = subdir | replace("/", ":") -%}
include(":{{ classname }}")
project(":{{ classname }}").projectDir = file("{{ arcadia_root }}/{{ subdir }}")
{%     endfor -%}
{%- endif -%}

{%- include "[generator]/debug.jinja" ignore missing -%}