The configuration of Sonargraph is very flexible due to usage of Groovy Templates. Per default, all environment variables are available. The following script illustrates the usage of the variable INCLUDE:
<%
def elements = INCLUDE.split(";");
for (element in elements)
{
println "--sys_include=" + element;
}
%>