class MxxRu::Cpp::ObjInfo
Class, describing object file.
Attributes
name[R]
The name of object file.
options[R]
The list of additional compiler options for that file. Array of String.
source[R]
The name of source file.
Public Class Methods
new( a_name, a_source, a_options )
click to toggle source
# File lib/mxx_ru/cpp/toolset.rb, line 45 def initialize( a_name, a_source, a_options ) @name = a_name @source = a_source @options = a_options end