Class: MxxRu::Cpp::Toolsets::Vc9

Inherits:
Vc8Family show all
Defined in:
lib/mxx_ru/cpp/toolsets/vc9.rb

Overview

Toolset implementation for Visual C++ 9.0

Setups following tags:

ver_hi

high version number. Value: 9.

ver_lo

low version number. Value: 0.

Constant Summary

Constants inherited from Vc8Family

MxxRu::Cpp::Toolsets::Vc8Family::Actual_manifest, MxxRu::Cpp::Toolsets::Vc8Family::MT_NAME_TAG

Instance Method Summary collapse

Methods inherited from Vc8Family

#clean_dll_specific_files, #clean_exe_specific_files, default_manifest, #make_dll_command_lines, #make_exe_command_lines, manifest, #setup_mandatory_options

Methods inherited from VcFamily

#clean_dll_specific_files, #clean_exe_specific_files, #clean_lib_specific_files, #clean_vc_specific_garbage, #compiler_name, #dll_file_name, #exe_file_name, #implib_link_name, #implib_link_path, #lib_file_name, #lib_link_name, #librarian_name, #linker_name, #make_c_obj_command_lines, #make_cpp_obj_command_lines, #make_dll_command_lines, #make_dll_requirements, #make_exe_command_lines, #make_lib_command_lines, #make_mswin_res_command_lines, #mswin_res_file_name, #obj_file_ext, #rc_name, #setup_mandatory_options, #setup_vc_specific_debug_options

Constructor Details

#initialize(a_name = "vc") ⇒ Vc9

Returns a new instance of Vc9.



42
43
44
45
46
47
# File 'lib/mxx_ru/cpp/toolsets/vc9.rb', line 42

def initialize( a_name = "vc" )
  super( a_name )

  setup_tag( "ver_hi", "9" )
  setup_tag( "ver_lo", "0" )
end