aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/functions-name.cxx
AgeCommit message (Collapse)AuthorFilesLines
2021-11-04Add $size() function to get size of sequence (names, strings, etc)Boris Kolpackov1-0/+41
2021-11-02Add $sort() functionBoris Kolpackov1-0/+2
Available overloads: $sort(<names> [, <flags>]) $sort(<ints> [, <flags>]) $sort(<strings> [, <flags>]) $sort(<paths> [, <flags>]) $sort(<dir_paths> [, <flags>]) The following flag is supported by the all overloads: dedup - in addition to sorting also remove duplicates Additionally, the strings overload also support the following flag: icase - sort ignoring case Note that on case-insensitive filesystem the paths and dir_paths overload's order is case-insensitive.
2021-10-13Allow out-qualified names in $name.*() function familyBoris Kolpackov1-19/+36
2021-09-14Add support for passing multiple names to $name.*() functionsBoris Kolpackov1-3/+49
2020-12-04Mark Buildfile functions as pure or impureBoris Kolpackov1-13/+21
2020-11-11Add ${c,cxx}.lib_{poptions,libs,rpaths}() functionsBoris Kolpackov1-1/+3
These functions can be used to query library metadata for options and libraries that should be used when compiling/linking dependent targets, similar to how cc::{compile,link}_rule do it. With this support it should be possible to more or less re-create their semantics in ad hoc recipes.
2020-06-03Fix function family for $target.path()Karen Arutyunov1-1/+1
2020-06-02Add $target.process_path() analogous to $target.path()Boris Kolpackov1-1/+29
2020-05-27Initial support for ad hoc recipes (still work in progress)Boris Kolpackov1-26/+82
2020-02-07Drop copyright notice from source codeKaren Arutyunov1-1/+0
2019-08-23Introduce notion of build contextBoris Kolpackov1-3/+3
All non-const global state is now in class context and we can now have multiple independent builds going on at the same time.
2019-07-01Split build system into library and driverBoris Kolpackov1-0/+109