Class: SharedLib

Inherits:
SourceLib show all
Defined in:
lib/rakepp/sharedlib.rb

Instance Attribute Summary collapse

Attributes inherited from SourceLib

#forceLib, #includes, #libs, #name, #outFile, #privateDefines, #sources

Instance Method Summary collapse

Methods inherited from SourceLib

#tr_includes

Constructor Details

#initialize(compiler, base, name, sources, libs, includes, options = {}, privateDefines = []) ⇒ SharedLib

Returns a new instance of SharedLib.



4
5
6
7
# File 'lib/rakepp/sharedlib.rb', line 4

def initialize(compiler, base, name, sources, libs, includes, options={}, privateDefines=[])
  super(compiler, base, name, sources, libs, includes, privateDefines)
  @options = options
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



2
3
4
# File 'lib/rakepp/sharedlib.rb', line 2

def options
  @options
end