class MxxRu::BinaryLibraryTypeConflictEx

Exception for the case where conflict of BinaryLibrary usage detected.

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

Public Class Methods

new( target_name, library_name ) click to toggle source
Calls superclass method
# 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