class MxxRu::Cpp::Toolsets::Vc7
Toolset
implemetation for Visual C++ 7.*
Public Class Methods
new( a_name = "vc" )
click to toggle source
Calls superclass method
MxxRu::Cpp::Toolsets::VcFamily::new
# File lib/mxx_ru/cpp/toolsets/vc7.rb, line 38 def initialize( a_name = "vc" ) super( a_name ) setup_tag( "ver_hi", "7" ) setup_tag( "ver_lo", "1" ) end
Public Instance Methods
setup_mandatory_options( target )
click to toggle source
Calls superclass method
MxxRu::Cpp::Toolsets::VcFamily#setup_mandatory_options
# File lib/mxx_ru/cpp/toolsets/vc7.rb, line 45 def setup_mandatory_options( target ) if RUNTIME_DEBUG == target.mxx_runtime_mode target.compiler_option( "-Yd" ) end super( target ) end