Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-06-21 | Add --trace-{match,execute} options | Boris Kolpackov | 1 | -4/+23 | |
These options can be used to understand which dependency chain causes matching or execution of a particular target. | |||||
2022-04-06 | Add support for rule hints | Boris Kolpackov | 1 | -0/+11 | |
A rule hint is a target attribute, for example: [rule_hint=cxx] exe{hello}: c{hello} Rule hints can be used to resolve ambiguity when multiple rules match the same target as well as to override an unambiguous match. | |||||
2022-03-28 | Add ability to customize pkg-config header and library search paths | Boris Kolpackov | 1 | -6/+27 | |
Specifically, {cc,c,cxx}.pkgconfig.{include,lib} variables specify header (-I) and library (-L) search paths to use in the generated .pc files instead of the default install.{include,lib}. Relative paths are resolved as install paths. | |||||
2022-03-23 | Document config.config.disfigure | Boris Kolpackov | 1 | -1/+19 | |
2022-03-23 | Make project configuration variables non-nullable by default | Boris Kolpackov | 1 | -11/+20 | |
A project configuration variable with the NULL default value is naturally assumed nullable, for example: config [string] config.libhello.fallback_name ?= [null] Otherwise, to make a project configuration nullable we use the `null` variable attribute, for example: config [string, null] config.libhello.fallback_name ?= "World" | |||||
2022-03-10 | Update manual to match new header pre-generation functionality | Boris Kolpackov | 1 | -25/+22 | |
2022-02-24 | Add note on disabling subprojects/amalgamations import search | Boris Kolpackov | 1 | -0/+10 | |
2022-02-18 | Move parse_cmdline() to libbuild2 | Karen Arutyunov | 1 | -2/+2 | |
2022-01-26 | Make bash module install into bin/<project>.bash/ to avoid clashes | Boris Kolpackov | 1 | -12/+15 | |
Also, expect the first component in the import path to be full project name even in case it has the .bash extension. | |||||
2022-01-16 | Expand on extension escaping in manual | Boris Kolpackov | 1 | -2/+8 | |
2022-01-16 | Minor clarifications to wildcard name patterns section in manual | Boris Kolpackov | 1 | -7/+16 | |
2021-11-09 | Pass --ascii-tree CLI option when generating embedded usage and man pages | Boris Kolpackov | 1 | -1/+3 | |
2021-11-04 | Document \n escape sequence for sed builtin in testscript manual | Karen Arutyunov | 1 | -0/+1 | |
2021-10-27 | Handle "common symbols" in symbol exporting .def generation rule | Boris Kolpackov | 1 | -2/+2 | |
2021-10-26 | Minor documentation tweak | Boris Kolpackov | 1 | -6/+6 | |
2021-10-20 | Change to version 0.15.0-a.0.z | Boris Kolpackov | 1 | -1/+1 | |
2021-10-16 | Release version 0.14.0v0.14.0 | Boris Kolpackov | 1 | -1/+1 | |
2021-10-15 | Fix symbol exporting example in manual | Boris Kolpackov | 1 | -1/+3 | |
2021-10-14 | Move symbol exporting documentation from NEWS to manual | Boris Kolpackov | 1 | -0/+46 | |
2021-10-14 | Rearrange internal scope documentation, add note in target import | Boris Kolpackov | 1 | -147/+149 | |
2021-10-13 | Add --cwd|-t option to env pseudo-builtin | Karen Arutyunov | 1 | -3/+8 | |
2021-10-12 | Documentation fixes | Francois Kritzinger | 1 | -6/+6 | |
2021-10-11 | Update bin.lib.version documentation | Boris Kolpackov | 1 | -10/+10 | |
2021-10-08 | Add few notes to internal scope documentation | Boris Kolpackov | 1 | -6/+18 | |
2021-10-05 | Add note to internal scope documentation | Boris Kolpackov | 1 | -0/+19 | |
2021-10-04 | Document internal scope functionality | Boris Kolpackov | 1 | -0/+125 | |
2021-09-20 | Assign pre-defined semantics to config.<project>.develop variables | Boris Kolpackov | 1 | -0/+33 | |
This variable allows a project to distinguish between development and consumption builds. While normally there is no distinction between these two modes, sometimes a project may need to provide additional functionality during development. For example, a source code generator which uses its own generated code in its implementation may need to provide a bootstrap step from the pre-generated code. Normally, such a step is only needed during development. See "Project Configuration" in the manual for details. | |||||
2021-05-04 | Add config.install.root with data_root/etc/ default | Boris Kolpackov | 1 | -0/+2 | |
2021-04-22 | Add <version> install directory substitution in addition to <project> | Boris Kolpackov | 1 | -3/+3 | |
2021-04-22 | Document use of depdb-env for manually tracking changes to environment | Boris Kolpackov | 1 | -0/+18 | |
2021-04-09 | Document hermetic build configuration support | Boris Kolpackov | 1 | -15/+183 | |
2021-01-30 | Rework include translation support | Boris Kolpackov | 1 | -2/+2 | |
See the config.cxx.translate_include variable documentation in cxx/init.cxx for details. | |||||
2020-12-11 | Add export script pseudo-builtin | Karen Arutyunov | 1 | -6/+40 | |
2020-12-08 | Add support for config.test.runner | Karen Arutyunov | 2 | -2/+42 | |
2020-12-07 | Update submodules | Boris Kolpackov | 1 | -0/+0 | |
2020-11-25 | Allow multiple -e options for sed builtin | Karen Arutyunov | 1 | -7/+9 | |
2020-11-23 | Document include and source directives | Boris Kolpackov | 1 | -1/+32 | |
2020-11-06 | Add support for test timeouts | Karen Arutyunov | 3 | -3/+72 | |
2020-10-18 | Make some documentation fixes | Francois Kritzinger | 2 | -77/+78 | |
2020-10-15 | Add ability to specify fallback value for NULL substitutions with in.null | Boris Kolpackov | 1 | -0/+13 | |
2020-10-05 | Update submodules | Boris Kolpackov | 1 | -0/+0 | |
2020-09-29 | Remove stray text from manual | Boris Kolpackov | 1 | -3/+0 | |
2020-09-24 | Fix typo in manual | Boris Kolpackov | 1 | -1/+1 | |
2020-08-12 | Add int64 and int64s variable types | Boris Kolpackov | 1 | -0/+3 | |
2020-07-21 | Change to version 0.14.0-a.0.z | Boris Kolpackov | 1 | -1/+1 | |
2020-07-18 | Release version 0.13.0v0.13.0 | Boris Kolpackov | 1 | -1/+1 | |
2020-07-18 | Minor fix in manual | Boris Kolpackov | 1 | -2/+2 | |
2020-07-17 | Minor documentation updates | Boris Kolpackov | 1 | -2/+13 | |
2020-07-16 | Documentation updates | Boris Kolpackov | 1 | -22/+40 | |
2020-07-14 | Add another note on wildcards inside eval context | Boris Kolpackov | 1 | -3/+15 | |