add Environment#append() for adding construction variables

This commit is contained in:
Josh Holtrop 2013-07-15 19:10:14 -04:00
parent 5eb914fb76
commit 97ce9bb3e3

View File

@ -52,6 +52,10 @@ module Rscons
@varset.send(:[]=, *args) @varset.send(:[]=, *args)
end end
def append(*args)
@varset.send(:append, *args)
end
def process def process
cache = Cache.new cache = Cache.new
targets_processed = Set.new targets_processed = Set.new