class MxxRu::Cpp::Toolsets::ClangMsVC

Toolset implemetation for Clang compiler.

Public Class Methods

new( a_name = "clang" ) click to toggle source
Calls superclass method MxxRu::Cpp::Toolsets::ClangFamily::new
# File lib/mxx_ru/cpp/toolsets/clang_msvc.rb, line 39
def initialize( a_name = "clang" )
  super( a_name )
  setup_tag( "host_os", "mswin" )
  setup_tag( "target_os", "mswin" )
end