class MxxRu::Cpp::LibInfo

Class, describing a library.

Attributes

file_name[R]
path[R]

Public Class Methods

new( a_file_name, a_path, a_link_name ) click to toggle source
Calls superclass method MxxRu::Cpp::TargetWithFullPath::new
# File lib/mxx_ru/cpp/toolset.rb, line 95
def initialize( a_file_name, a_path, a_link_name )
  super( a_file_name, a_path )

  # File name of library file without a folder.
  @file_name = a_file_name
  # Folder where library file should be.
  @path = a_path
  # The name should be passed to the linker.
  @link_name = a_link_name
end