comparison trunk/src/config.d @ 721:8955296dd807

Added ddoc_files option to config.d
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Fri, 01 Feb 2008 16:40:35 +0100
parents f203c5248d0b
children f4b9680c0e16
comparison
equal deleted inserted replaced
720:74cdbb25c7c8 721:8955296dd807
1 // Relative paths are resolved from the directory of dil's executable. 1 // Relative paths are resolved from the directory of dil's executable.
2 2
3 // Path to the language file. 3 // Path to the language file.
4 var langfile = "lang_en.d"; 4 var langfile = "lang_en.d";
5 // An array of import paths to look for modules. 5 // An array of import paths to look for modules.
6 var import_paths = []; 6 var import_paths = []; // E.g.: ["src/", "import/"]
7 // DDoc macro file paths.
8 var ddoc_files = []; // E.g.: ["src/mymacros.ddoc", "othermacros.ddoc"]
7 /* 9 /*
8 Customizing error messages. 10 Customizing error messages.
9 0: file path to the source text. 11 0: file path to the source text.
10 1: line number. 12 1: line number.
11 2: column number. 13 2: column number.