summaryrefslogtreecommitdiffstats
path: root/tests/variable/target-type-pattern-specific/buildfile
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright yearKaren Arutyunov2019-01-161-1/+1
|
* Add support for target and prerequisite specific variable blocksBoris Kolpackov2018-11-211-0/+5
For example, now instead of: lib{foo}: cxx.loptions += -static lib{foo}: cxx.libs += -lpthread We can write: lib{foo}: { cxx.loptions += -static cxx.libs += -lpthread } The same works for prerequisites as well as target type/patterns. For example: exe{*.test}: { test = true install = false }