Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-12-03 | Clean up rule names | Boris Kolpackov | 1 | -12/+19 | |
2015-12-03 | Add ability for module to remember that it is unconfigured | Boris Kolpackov | 3 | -12/+35 | |
A module can set and then check the config.*.configured special variable to false. | |||||
2015-12-02 | Don't write config.{loaded,configured} special variables to config.build | Boris Kolpackov | 1 | -0/+6 | |
2015-12-02 | Implement optional module loading | Boris Kolpackov | 3 | -9/+13 | |
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 | Override outer configuration install paths that contain package name | Boris Kolpackov | 2 | -11/+27 | |
2015-09-11 | Handle file io failures in parser | Boris Kolpackov | 1 | -4/+4 | |
2015-09-08 | Rework diagnostics verbosity, add quiet mode/option | Boris Kolpackov | 2 | -8/+10 | |
2015-08-31 | Rework scoping logic | Boris Kolpackov | 2 | -8/+12 | |
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 | -14/+39 | |
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 | 3 | -15/+71 | |
2015-08-24 | New variable architecture | Boris Kolpackov | 5 | -141/+90 | |
2015-08-14 | Rework meta/operation registration | Boris Kolpackov | 2 | -11/+7 | |
We now have global tables for meta/operation. Plus each can then be enabled on the per-project basis. | |||||
2015-07-31 | Essential install module functionality | Boris Kolpackov | 3 | -29/+83 | |
2015-07-28 | Install module genesis | Boris Kolpackov | 1 | -0/+7 | |
2015-07-23 | Basic test support | Boris Kolpackov | 1 | -3/+3 | |
2015-07-20 | Implement pre/post operation support | Boris Kolpackov | 1 | -6/+10 | |
Also, extend execution mode/postponed logic to propagate the postponed target state. At the top, we now re-try postponed targets. This results in the expected behavior when, for example, cleaning two targets with one depending on the other. | |||||
2015-07-14 | Add notion of strong/weak amalgamation, make strong new clean boundary | Boris Kolpackov | 1 | -3/+2 | |
2015-07-13 | Implement subproject import | Boris Kolpackov | 1 | -3/+3 | |
2015-07-13 | Make subprojects list of name=subdir pairs | Boris Kolpackov | 1 | -0/+6 | |
2015-07-10 | Implement automatic subproject discovery | Boris Kolpackov | 1 | -6/+21 | |
Currently we only capture their directories without the project names. We will need project names when we hook import search into this. | |||||
2015-07-08 | Implement automatic amalgamation discovery | Boris Kolpackov | 1 | -11/+12 | |
2015-07-07 | Relax requirement on amalgamation src_root to track sub-project | Boris Kolpackov | 1 | -1/+1 | |
2015-07-07 | Rework module architecture | Boris Kolpackov | 4 | -12/+21 | |
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-02 | Common types cleanup (strings, cstrings) | Boris Kolpackov | 1 | -2/+1 | |
2015-07-02 | Various improvements to cli module | Boris Kolpackov | 1 | -0/+18 | |
2015-06-26 | Part two of dependency injection with auto-generation support | Boris Kolpackov | 1 | -3/+5 | |
2015-06-25 | Part one of dependency injection with auto-generation support | Boris Kolpackov | 1 | -1/+1 | |
2015-06-24 | First take on the cli module plus necessary infrastructure | Boris Kolpackov | 2 | -1/+25 | |
2015-06-18 | Move path and filesystem from build2 to libbutl | Boris Kolpackov | 3 | -3/+7 | |
2015-05-11 | Correct copyright | Boris Kolpackov | 7 | -7/+7 | |
2015-04-28 | Make config module implicitly load config.build if exists | Boris Kolpackov | 1 | -15/+9 | |
2015-04-24 | Implement lib/liba/libso{} target group, shared/static library build | Boris Kolpackov | 3 | -0/+147 | |
2015-04-20 | Merge config.cxx.* variables into cxx.* when loading cxx module | Boris Kolpackov | 1 | -3/+9 | |
2015-04-20 | Automatically decide when to print relative/absolute paths | Boris Kolpackov | 1 | -9/+3 | |
2015-04-15 | New variables architecture | Boris Kolpackov | 1 | -6/+5 | |
Now operator[] is only used for lookup. | |||||
2015-04-13 | Add separate type to represent directory paths | Boris Kolpackov | 2 | -18/+19 | |
2015-04-08 | Inherit list_value directly from names | Boris Kolpackov | 1 | -4/+4 | |
2015-04-08 | Add note to generated config.build about inherited configuration | Boris Kolpackov | 1 | -3/+15 | |
2015-04-08 | Distinguish between undefined and null variables | Boris Kolpackov | 1 | -4/+4 | |
2015-04-08 | Support for disfiguring subprojects | Boris Kolpackov | 1 | -39/+80 | |
2015-04-08 | Configure subprojects that were loaded | Boris Kolpackov | 1 | -29/+54 | |
2015-04-07 | Provide more convenient access to root scope | Boris Kolpackov | 1 | -7/+9 | |
2015-04-02 | Handle "nothing to be done" case for disfigure | Boris Kolpackov | 1 | -12/+36 | |
2015-04-02 | Implement translation of meta/operations to natural language | Boris Kolpackov | 1 | -0/+6 | |
2015-04-01 | Warn about configured/command line value mismatch | Boris Kolpackov | 1 | -12/+25 | |
Also store configured but unspecified values | |||||
2015-04-01 | Implement initial C++ configuration support | Boris Kolpackov | 1 | -7/+6 | |
2015-03-31 | Save config.build | Boris Kolpackov | 2 | -2/+56 | |
2015-03-25 | Configure/disfigure src_root saving/removing support; fsdir{} injection | Boris Kolpackov | 2 | -13/+163 | |
We can now build out-of-tree. | |||||
2015-03-24 | Make meta-operations control build loop; add disfigure skeleton | Boris Kolpackov | 3 | -8/+62 | |
2015-03-20 | New consolidated load/match/build loop | Boris Kolpackov | 3 | -2/+17 | |