[Build] Add ability to enable rendering of diagnostic names via local.properties

This commit is contained in:
Dmitriy Novozhilov
2022-02-10 15:03:50 +03:00
committed by teamcity
parent 3d48f9926f
commit e7e1aa1873
3 changed files with 10 additions and 1 deletions
+3
View File
@@ -70,6 +70,9 @@ ext.configureFrontendIr = { Project project ->
if (project.kotlinBuildProperties.useFirForLibraries) {
freeCompilerArgs += "-Xuse-fir"
}
if (project.properties.renderDiagnosticNames) {
freeCompilerArgs += "-Xrender-internal-diagnostic-names"
}
}
}
}