Class: Rscons::Builders::Barrier
- Inherits:
-
Rscons::Builder
- Object
- Rscons::Builder
- Rscons::Builders::Barrier
- Defined in:
- lib/rscons/builders/barrier.rb
Overview
The Barrier builder does not perform any action. It exists as a builder on which to place dependencies to ensure that each of its sources are built before any build targets which depend on the barrier build target.
Instance Attribute Summary
Attributes inherited from Rscons::Builder
#abssources, #abstarget, #build_step, #cache, #env, #preferred_ld, #side_effects, #sources, #target, #vars
Instance Method Summary collapse
-
#run(options) ⇒ Object
Run the builder.
Methods inherited from Rscons::Builder
#depends, extra_path, #finalize_command, #initialize, name, #name, #print_run_message, #produces, #register_command, #standard_command, #wait_for
Constructor Details
This class inherits a constructor from Rscons::Builder
Instance Method Details
#run(options) ⇒ Object
Run the builder.
9 10 11 |
# File 'lib/rscons/builders/barrier.rb', line 9 def run() true end |