diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-11-30 14:39:07 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-11-30 14:39:07 +0200 |
commit | d5e4d325c6a4acc8df6f0e42bc7d76e1f833d58a (patch) | |
tree | aea61f78825f2fd6ce22a4630f6d555b4a8714c1 /build/dist/rule.cxx | |
parent | b2374e3174e13682fcfa3ffe3fc62f2fd161a7cc (diff) |
Implement dist support for including/excluding targets
For example:
cxx{*-options}: dist = true
Diffstat (limited to 'build/dist/rule.cxx')
-rw-r--r-- | build/dist/rule.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/build/dist/rule.cxx b/build/dist/rule.cxx index 6977676..b5e1185 100644 --- a/build/dist/rule.cxx +++ b/build/dist/rule.cxx @@ -33,11 +33,9 @@ namespace build if (p.proj () != nullptr) continue; - // @@ This is where we will handle dist/nodist. - target& pt (p.search ()); - // Don't match targets that are outside our project. + // Don't match targets that are outside of our project. // if (pt.dir.sub (out_root)) build::match (a, pt); |