aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/target-type.hxx
AgeCommit message (Collapse)AuthorFilesLines
2024-02-13Make target_type non-copyableBoris Kolpackov1-0/+3
2024-01-11Add ability to alias target type from another projectBoris Kolpackov1-4/+4
The syntax is: define <type> = <scope>/<type>
2023-12-03Reimplement search_existing() functions via target_type::searchBoris Kolpackov1-1/+8
This allows us to automatically get the target type-specific behavior with regards to the out_only semantics (added in the previous commit) instead of passing it explicitly from each call site.
2023-05-29Extend special match_rule() logic to all groups with dynamic targetsBoris Kolpackov1-1/+2
2023-05-29Explicit group: syntax parsingBoris Kolpackov1-0/+2
2022-12-15Add noexcept to move constructors and move assignment operatorsKaren Arutyunov1-1/+1
2022-11-18Complete low verbosity diagnostics reworkBoris Kolpackov1-1/+3
2022-04-06Add support for rule hintsBoris Kolpackov1-1/+45
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-31Use own type information instead of dynamic_cast in target::is_a()Boris Kolpackov1-4/+5
2021-11-08Incorporate derived target types into generated header logicBoris Kolpackov1-3/+12
2021-05-28Clean default target type extension logicBoris Kolpackov1-4/+17
2021-01-30Add std::{map, multimap} to types.hxxBoris Kolpackov1-4/+2
Seeing that std::map is becoming a common Buildfile variable type.
2020-02-07Drop copyright notice from source codeKaren Arutyunov1-1/+0
2019-10-29Add forward declaration header for build state typesBoris Kolpackov1-6/+1
2019-08-26Implement updating build system modulesBoris Kolpackov1-0/+3
2019-08-23Introduce notion of build contextBoris Kolpackov1-1/+7
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/+208