class MxxRu::Cpp::Target_with_full_path

Base class for any target for which full path must be calculated.

Public Class Methods

new( name, path ) click to toggle source
# File lib/mxx_ru/cpp/toolset.rb, line 57
def initialize( name, path )
  @target_path = path
  @target_name = name
end

Public Instance Methods

full_name() click to toggle source
# File lib/mxx_ru/cpp/toolset.rb, line 62
def full_name
  @full_name = File.join( @target_path, @target_name ) unless @full_name
  @full_name
end