Class: Xcake::TargetLibraryGenerator
- Inherits:
-
Generator
- Object
- Generator
- Xcake::TargetLibraryGenerator
show all
- Defined in:
- lib/xcake/generator/target_library_generator.rb
Instance Attribute Summary
Attributes inherited from Generator
#context
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Generator
#initialize, plugins_location
#descendants
Methods included from Visitor
#item_name, #leave, #visit
Methods included from Plugin
included
Methods included from Dependency
included
Instance Method Details
#visit_target(target) ⇒ Object
7
8
9
10
11
12
13
14
15
16
|
# File 'lib/xcake/generator/target_library_generator.rb', line 7
def visit_target(target)
system_libraries = target.system_libraries.to_a
return if system_libraries.empty?
EventHooks.run_hook :before_adding_system_library, target
native_target = @context.native_object_for(target)
native_target.add_system_libraries(system_libraries)
end
|