summaryrefslogtreecommitdiffstats
path: root/build2/in/init.cxx
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright yearKaren Arutyunov2019-01-161-1/+1
|
* Implement bash moduleBoris Kolpackov2018-07-201-1/+1
|
* Reimplement version::in_rule in terms of in::ruleBoris Kolpackov2018-07-171-1/+1
| | | | | Significantly, the version::in_rule rule now track changes to the substitution values.
* Implement in moduleBoris Kolpackov2018-07-161-0/+110
Given test.in containing something along these lines: foo = $foo$ Now we can do: using in file{test}: in{test.in} file{test}: foo = FOO The alternative variable substitution symbol can be specified with the in.symbol variable and lax (instead of the default strict) mode with in.substitution. For example: file{test}: in.symbol = '@' file{test}: in.substitution = lax