class MxxRu::Cpp::Dll_info
Class, describing a shared library.
Attributes
dll_file_name[R]
File name of dll file without a folder.
dll_path[R]
Folder where dll file should be.
link_name[R]
The name should be passed to the linker. (import library name) It may be nil if inport library isn't used.
link_path[R]
The folder name, where linker should look for import library. It may be nil if inport library isn't used.
Public Class Methods
new( a_dll_file_name, a_dll_path, a_link_name, a_link_path )
click to toggle source
Calls superclass method
MxxRu::Cpp::TargetWithFullPath::new
# File lib/mxx_ru/cpp/toolset.rb, line 141 def initialize( a_dll_file_name, a_dll_path, a_link_name, a_link_path ) super( a_dll_file_name, a_dll_path ) @dll_file_name = a_dll_file_name @dll_path = a_dll_path @link_name = a_link_name @link_path = a_link_path end