diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-07-04 07:30:23 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-07-04 07:30:23 +0200 |
commit | ee0456ed4a5f3f6686fbb0a433161d1f9d8535fe (patch) | |
tree | 697834b68df162a004a6e13113260a11e0236af6 /NEWS | |
parent | f52b47eea4c5de553d202669f91e6f4f14668592 (diff) |
Remove libu{} target group
The semantics provided by libu{} is rarely required and as result was not
yet documented. However, if you are using it, the new way to achieve the
same result is to use both libue{} and libul{} explicitly, for example:
exe{foo}: libue{foo}
lib{foo}: libul{foo}
{libue libul}{foo}: cxx{*}
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -12,6 +12,18 @@ Version 0.12.0 LIBBUILD2_ATOMIC_NON_LOCK_FREE + * The libu{} target group has been removed. + + The semantics provided by libu{} is rarely required and as result was not + yet documented. However, if you are using it, the new way to achieve the + same result is to use both libue{} and libul{} explicitly, for example: + + exe{foo}: libue{foo} + lib{foo}: libul{foo} + + {libue libul}{foo}: cxx{*} + + Version 0.11.0 * Initial work on header unit importation and include translation support. |