Exception: MxxRu::BinaryLibraryTypeConflictEx

Inherits:
Ex
  • Object
show all
Defined in:
lib/mxx_ru/binary_library.rb

Overview

Exception for the case where conflict of BinaryLibrary usage detected.

Conflict detected if STATIC and SHARED library with same name specified for one target.

Instance Method Summary collapse

Constructor Details

#initialize(target_name, library_name) ⇒ BinaryLibraryTypeConflictEx

Returns a new instance of BinaryLibraryTypeConflictEx.



101
102
103
104
# File 'lib/mxx_ru/binary_library.rb', line 101

def initialize( target_name, library_name )
  super( "Binary library conflict with library '#{library_name}' for " +
      "target '#{target_name}'" )
end