Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-02-07 | Drop copyright notice from source code | Karen Arutyunov | 4 | -4/+0 | |
2019-11-15 | Test and document wildcard character escaping | Boris Kolpackov | 1 | -1/+11 | |
Also document the new bracket expression ([...]) wildcard support. | |||||
2019-09-27 | Adapt to bracket expressions in wildcard patterns | Karen Arutyunov | 1 | -1/+1 | |
2019-01-16 | Update copyright year | Karen Arutyunov | 4 | -4/+4 | |
2018-11-21 | Add support for target and prerequisite specific variable blocks | Boris Kolpackov | 1 | -3/+3 | |
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 } | |||||
2018-09-05 | Create .buildignore file in testscript root working directory | Karen Arutyunov | 1 | -0/+15 | |
2018-09-04 | Rename .test/test{} to .testscript/testscript{} | Boris Kolpackov | 4 | -11/+11 | |
2018-08-09 | Fix tests some more | Boris Kolpackov | 1 | -3/+3 | |
2018-08-09 | Fix test failures on Windows | Boris Kolpackov | 1 | -6/+21 | |
2018-08-09 | Add support for name patterns without wildcard characters | Boris Kolpackov | 1 | -2/+5 | |
In particular, this allows the "if-exists" specification of prerequisites, for example: for t: $tests exe{$t}: cxx{$t} test{+$t} | |||||
2018-08-07 | Add support for default extension specification, trailing dot escaping | Boris Kolpackov | 1 | -0/+71 | |
For example: cxx{*}: extension = cxx cxx{foo} # foo.cxx cxx{foo.test} # foo.test (probably what we want...) cxx{foo.test...} # foo.test.cxx (... is this) cxx{foo..} # foo. cxx{foo....} # foo.. cxx{foo.....} # error (must come in escape pair) | |||||
2018-07-30 | Make project variable to be of project_name type | Karen Arutyunov | 1 | -2/+2 | |
2018-05-19 | Update copyright year | Karen Arutyunov | 3 | -3/+3 | |
2017-09-29 | Allow pattern group to start with inclusion | Karen Arutyunov | 1 | -29/+85 | |
2017-07-17 | Allow independent wildcard patterns in a group | Karen Arutyunov | 1 | -4/+9 | |
2017-07-12 | Make use of wildcards in buildfiles | Karen Arutyunov | 1 | -1/+1 | |
2017-06-08 | Add full support for pattern exclusions | Karen Arutyunov | 1 | -2/+3 | |
2017-03-20 | Fix name/cross.test | Karen Arutyunov | 1 | -2/+2 | |
2017-03-17 | Add support for inclusion/exclusion groups in wildcard patterns | Boris Kolpackov | 1 | -14/+20 | |
For example cxx{* -{foo bar *x}}. | |||||
2017-03-17 | Add tests for multi-pattern crosses seeing that we use them | Boris Kolpackov | 1 | -0/+6 | |
2017-03-13 | Port names test | Boris Kolpackov | 2 | -1/+110 | |
2017-03-13 | Filter hidden files/directories in wildcard patterns matches | Boris Kolpackov | 1 | -0/+24 | |
2017-03-10 | Implement support for wildcard patterns | Boris Kolpackov | 2 | -0/+242 | |