aboutsummaryrefslogtreecommitdiff
path: root/build2/variable.hxx
AgeCommit message (Collapse)AuthorFilesLines
2019-01-16Update copyright yearKaren Arutyunov1-1/+1
2018-11-21Add support for target and prerequisite specific variable blocksBoris Kolpackov1-0/+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-11-13Minor terminology tweaks (model -> build state)Boris Kolpackov1-2/+2
2018-11-09Add support for relative to base scope command line variable overridesBoris Kolpackov1-3/+4
Currently, if we say: $ b dir/ ./foo=bar The scope the foo=bar is set on is relative to CWD, not dir/. While this may seem wrong at first, this is the least surprising behavior when we take into account that there can be multiple dir/'s. Sometimes, however, we do want the override directory to be treated relative to (every) target's base scope that we are building. To support this we are extending the '.' and '..' special directory names (which are still resolved relative to CWD) with '...', which means "relative to the base scope of every target in the buildspec". For example: $ b dir/ .../foo=bar Is equivalent to: $ b dir/ dir/foo=bar And: $ b liba/ libb/ .../tests/foo=bar Is equivalent to: $ b liba/ libb/ liba/tests/foo=bar libb/tests/foo=bar
2018-11-01Add support for rule-specific variables, use to fix cc.type data raceBoris Kolpackov1-0/+3
2018-08-09Add support for returning optional<T> from (buildfile) function implementationsBoris Kolpackov1-0/+7
2018-07-30Make project variable to be of project_name typeKaren Arutyunov1-1/+21
2018-06-28Workaround for VC14 bugBoris Kolpackov1-0/+4
2018-06-28Add prerequisite variable visibility specification/enforcementBoris Kolpackov1-5/+36
2018-06-28Implement support for excluded and ad hoc prerequisitesBoris Kolpackov1-0/+7
The inclusion/exclusion is controlled via the 'include' prerequisite-specific variable. Valid values are: false - exclude true - include adhoc - include but treat as an ad hoc input For example: lib{foo}: cxx{win32-utility}: include = ($cxx.targe.class == 'windows') exe{bar}: libs{plugin}: include = adhoc
2018-05-19Update copyright yearKaren Arutyunov1-1/+1
2018-04-26Implement forwarded configurations and backlinkingBoris Kolpackov1-4/+11
2018-01-18Use prefix_map::find_sup/sub()Boris Kolpackov1-1/+1
2018-01-05Add support for variable aliasesBoris Kolpackov1-16/+57
2017-12-13Implement info meta operationBoris Kolpackov1-0/+12
This meta operation can be used to print basic information (name, version, source/output roots, etc) for one or more projects.
2017-12-05Add support for first-access value typification during non-load phasesBoris Kolpackov1-5/+27
2017-12-05Minor value typification API changeBoris Kolpackov1-3/+3
2017-12-04Add cast_empty() for value castingBoris Kolpackov1-0/+11
2017-12-03Add few clarifying commentsBoris Kolpackov1-1/+4
2017-12-03Allow typification of variables and values across load generationsBoris Kolpackov1-2/+0
The original semantics turned out to be too restrictive. For example, the user may have specified the config.c variable on the command line that is only used by an imported project that is loaded in a subsequent generation. We are also relaxing it for values since conceptually the two feel the same. For a value the (hypothetical) example is a "common" variable set in a project root that is only queried in a subdirectory in a subsequent generation.
2017-11-09Add support for for-loopBoris Kolpackov1-1/+5
The semantics is similar to the C++11 range-based for: list = 1 2 3 for i: $list print $i Note that there is no scoping of any kind for the loop variable ('i' in the above example). See tests/loop/for.test for some examples/ideas. In the future the plan is to also support more general while-loop as well as break and continue.
2017-10-03Adapt to modularization of libbutlKaren Arutyunov1-2/+2
2017-08-20Add support for not cleaning generated version fileBoris Kolpackov1-5/+9
2017-07-31Experimental (and probably broken) pkg-config generation supportBoris Kolpackov1-2/+7
2017-06-27Add support for regex function familyKaren Arutyunov1-1/+1
2017-05-01Add hxx extension for headersKaren Arutyunov1-0/+1328