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

{%  if subdirs|length > 1 -%}
{%-     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 -%}