aboutsummaryrefslogtreecommitdiff
path: root/tests/define
AgeCommit message (Collapse)AuthorFilesLines
2016-01-24Fix bug in dynamically derived target typesBoris Kolpackov1-1/+1
2015-12-01Reimplement define as dynamic derivation rather than aliasBoris Kolpackov2-12/+26
New syntax: define cli: file The rationale is we need to be able to assign the file extension (using type/pattern-specific variables). And if it is an alias, we will assign it to the original target type. Note that we could still support aliases if we need to. Will need to bring back the id member in target_type that would normally point to itself but for an alias would point to the origin.
2015-12-01Implement support for definition target type aliasesBoris Kolpackov1-0/+16
For example: define cli=file Currently, the semantics is that of a real alias with only name differences that are used for display. See tests/define/buildfile for more use cases.