aboutsummaryrefslogtreecommitdiff
path: root/build2/in/rule.cxx
AgeCommit message (Collapse)AuthorFilesLines
2018-07-17Add ability to customize in::rule's default symbol and modeBoris Kolpackov1-2/+2
2018-07-16Implement in moduleBoris Kolpackov1-0/+427
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