Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-12-14 | Add note on redirecting STDERR in cli test | Boris Kolpackov | 1 | -0/+4 | |
2015-12-03 | Clean up rule names | Boris Kolpackov | 1 | -21/+23 | |
2015-12-03 | Add ability for module to remember that it is unconfigured | Boris Kolpackov | 1 | -12/+28 | |
A module can set and then check the config.*.configured special variable to false. | |||||
2015-12-02 | Redo extension derivation for file{}, doc{}, and cli{} | Boris Kolpackov | 1 | -2/+4 | |
We now first check the 'extension' variable, then use the default. | |||||
2015-12-02 | Add support for optional configuration for cli module | Boris Kolpackov | 1 | -42/+96 | |
2015-12-02 | Implement optional module loading | Boris Kolpackov | 2 | -10/+20 | |
The syntax is: using? cli Now each module use results in two bool variables: <module>.loaded and <module>.configured. Also implement variable visibility (the above two variables are limited to project). | |||||
2015-12-01 | Reimplement define as dynamic derivation rather than alias | Boris Kolpackov | 1 | -6/+2 | |
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-01 | Implement support for definition target type aliases | Boris Kolpackov | 2 | -5/+7 | |
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. | |||||
2015-11-30 | Tighten unresolved group logic | Boris Kolpackov | 1 | -0/+6 | |
Now a wildcard/fallback rule should explicitly detect and handle unresolved situation. | |||||
2015-11-30 | Add cli{} prerequisite if cli.cxx{} group doesn't have any | Boris Kolpackov | 1 | -4/+7 | |
This happens when we use the group only for setting cli.options. Not very clean. | |||||
2015-11-29 | Allow for target group members to remain unresolved | Boris Kolpackov | 1 | -4/+0 | |
This, for example, can happen when we have a fallback rule for dist(update) or configure(update). | |||||
2015-09-08 | Rework diagnostics verbosity, add quiet mode/option | Boris Kolpackov | 2 | -10/+10 | |
2015-08-31 | Rework scoping logic | Boris Kolpackov | 1 | -1/+1 | |
Now the src directory is entered into the scope map and points to the same scope as out. This means that targets that are in src, not out (e.g., source files) will "see" rules, variables, etc. This becomes important when we try, for example, to install a source file (say, a header) from src: we need the rule as well as the install.* variables. | |||||
2015-08-29 | New configure meta-operation implementation | Boris Kolpackov | 2 | -1/+5 | |
Now we search and match (but do not execute) a rule for every operation supported by the project. | |||||
2015-08-27 | Dist module/meta-operation initial implementation | Boris Kolpackov | 2 | -13/+9 | |
2015-08-24 | New variable architecture | Boris Kolpackov | 2 | -6/+16 | |
2015-08-03 | match_only and dependents count rework, part 1 | Boris Kolpackov | 1 | -1/+1 | |
2015-07-24 | Add support for generated test input/output | Boris Kolpackov | 1 | -2/+4 | |
2015-07-23 | Basic test support | Boris Kolpackov | 1 | -1/+1 | |
2015-07-22 | Fix postponed re-examination logic | Boris Kolpackov | 1 | -1/+1 | |
Now postponed takes precedence over changed. | |||||
2015-07-21 | Improve nested operations support | Boris Kolpackov | 2 | -2/+2 | |
The idea is this: we need to be able to override "conditional, inner for outer" recipes with the "unconditional inner" ones. Here is the concrete scenario: we have {update, test} action and the lib{} target that is both mentioned as a prerequisite of ./ and exe{}, which is a test. At first, we want to ignore lib{} when reached as a prerequisite of ./. But then we get to it via exe{} (which is a test and thus should be updated). At this point we should override the recipe for lib{} with the one that would update it rather than ignore. | |||||
2015-07-07 | Rework module architecture | Boris Kolpackov | 2 | -34/+42 | |
Now the target type and rule maps are in scopes (builtins -- in global scope). We also now have the map of loaded modules in the root scope of each project. | |||||
2015-07-06 | Add note on cli module implementation | Boris Kolpackov | 1 | -0/+1 | |
2015-07-02 | Common types cleanup (strings, cstrings) | Boris Kolpackov | 1 | -2/+3 | |
2015-07-02 | Various improvements to cli module | Boris Kolpackov | 4 | -53/+48 | |
2015-07-02 | Make few existing file searching optimizations | Boris Kolpackov | 1 | -1/+18 | |
2015-07-01 | Get rid of accessors/modifiers in cli.cxx target | Boris Kolpackov | 3 | -35/+40 | |
2015-07-01 | Clean up group state, mtime design | Boris Kolpackov | 3 | -65/+62 | |
2015-07-01 | Group state support | Boris Kolpackov | 2 | -31/+1 | |
2015-07-01 | Cleanup group "see through" design | Boris Kolpackov | 3 | -15/+11 | |
2015-06-30 | Group "see through" iteration, take 1 | Boris Kolpackov | 2 | -11/+11 | |
2015-06-26 | Part two of dependency injection with auto-generation support | Boris Kolpackov | 1 | -54/+93 | |
2015-06-24 | First take on the cli module plus necessary infrastructure | Boris Kolpackov | 6 | -0/+611 | |