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

{%  for subdir in subdirs -%}
{%-     set arcadia_subdir = arcadia_root + "/" + subdir -%}
{%-     if arcadia_subdir != project_root -%}
{%-         set classname = subdir | replace("/", ":") %}
include(":{{ classname }}")
project(":{{ classname }}").projectDir = file("{{ arcadia_subdir }}")
{%      endif -%}
{%- endfor -%}

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