Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add $<CONFIG:...> boolean query generator expression | Brad King | 2012-08-15 | 1 | -0/+1 |
| | | | | | | | This expression evaluates to '1' or '0' to indicate whether the build configuration for which the expression is evaluated matches tha named configuration. In combination with the "$<0:...>" and "$<1:...>" expressions this allows per-configuration content to be generated. | ||||
* | Add boolean generator expressions | Brad King | 2012-08-15 | 1 | -1/+9 |
| | | | | | | | | | | | | | Add generator expressions that combine and use boolean test results: $<0:...> = empty string (ignores "...") $<1:...> = content of "..." $<AND:?[,?]...> = '1' if all '?' are '1', else '0' $<OR:?[,?]...> = '0' if all '?' are '0', else '1' $<NOT:?> = '0' if '?' is '1', else '1' These will be useful to evaluate (future) boolean query expressions and condition content on the results. Include tests and documentation. | ||||
* | Factor generator expression docs out of add_test | Brad King | 2010-12-15 | 1 | -0/+30 |
This documentation may be reused wherever generator expressions are supported. |