class MxxRu::Cpp::Exe_target

Exe is a target type.

Public Class Methods

new( a_alias, &block ) click to toggle source
Calls superclass method MxxRu::Cpp::Target::new
# File lib/mxx_ru/cpp/target.rb, line 1533
def initialize( a_alias, &block )
  super( a_alias )

  instance_eval( &block ) if block
end

Public Instance Methods

target_type() click to toggle source
# File lib/mxx_ru/cpp/target.rb, line 1539
def target_type
  return ExeTargetType.new
end