MCPcopy Create free account
hub / github.com/boostorg/build / ArchiveGenerator

Class ArchiveGenerator

v2/tools/builtin.py:696–707  ·  view source on GitHub ↗

The generator class for handling STATIC_LIB creation.

Source from the content-addressed store, hash-verified

694 generators.register(g)
695
696class ArchiveGenerator (generators.Generator):
697 """ The generator class for handling STATIC_LIB creation.
698 """
699 def __init__ (self, id, composing, source_types, target_types_and_names, requirements):
700 generators.Generator.__init__ (self, id, composing, source_types, target_types_and_names, requirements)
701
702 def run (self, project, name, prop_set, sources):
703 sources += prop_set.get ('<library>')
704
705 result = generators.Generator.run (self, project, name, prop_set, sources)
706
707 return result
708
709
710def register_archiver(id, source_types, target_types, requirements):

Callers 1

register_archiverFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected