Until I have fixed my code and multiple string-includes are possible
you can get away with

string genIncludeString(string[] filenames) 
{ Appender!string res; 
  foreach(filename;filenames)
    res ~= "include "~filename;

  return res; }