Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-12-02 | Implement optional module loading | Boris Kolpackov | 1 | -3/+6 | |
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-09-08 | Rework diagnostics verbosity, add quiet mode/option | Boris Kolpackov | 1 | -1/+1 | |
2015-08-31 | Rework scoping logic | Boris Kolpackov | 1 | -1/+5 | |
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 | 1 | -1/+7 | |
Now we search and match (but do not execute) a rule for every operation supported by the project. | |||||
2015-08-14 | Rework meta/operation registration | Boris Kolpackov | 1 | -8/+7 | |
We now have global tables for meta/operation. Plus each can then be enabled on the per-project basis. | |||||
2015-07-07 | Rework module architecture | Boris Kolpackov | 1 | -6/+13 | |
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-06-18 | Move path and filesystem from build2 to libbutl | Boris Kolpackov | 1 | -2/+3 | |
2015-05-11 | Correct copyright | Boris Kolpackov | 1 | -1/+1 | |
2015-04-28 | Make config module implicitly load config.build if exists | Boris Kolpackov | 1 | -15/+9 | |
2015-04-20 | Merge config.cxx.* variables into cxx.* when loading cxx module | Boris Kolpackov | 1 | -3/+9 | |
2015-04-13 | Add separate type to represent directory paths | Boris Kolpackov | 1 | -2/+2 | |
2015-03-31 | Save config.build | Boris Kolpackov | 1 | -2/+2 | |
2015-03-25 | Configure/disfigure src_root saving/removing support; fsdir{} injection | Boris Kolpackov | 1 | -4/+6 | |
We can now build out-of-tree. | |||||
2015-03-24 | Make meta-operations control build loop; add disfigure skeleton | Boris Kolpackov | 1 | -6/+6 | |
2015-03-20 | New consolidated load/match/build loop | Boris Kolpackov | 1 | -2/+10 | |
2015-03-18 | Implement complete root/base detection, basic module support | Boris Kolpackov | 1 | -0/+43 | |
This is the initial groundwork for the configuration support. |