Subversion Repositories DevTools

Rev

Rev 359 | Rev 4382 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 359 Rev 4192
Line 66... Line 66...
66
                           'cleancmd'   => 'devenv =DSW= /clean =TYPE= /useenv' ,
66
                           'cleancmd'   => 'devenv =DSW= /clean =TYPE= /useenv' ,
67
                           'tmp'        => 'vc100',
67
                           'tmp'        => 'vc100',
68
                           'VSCOMPILER' => '3',
68
                           'VSCOMPILER' => '3',
69
                           'GenManifest' => '1',
69
                           'GenManifest' => '1',
70
                           },
70
                           },
-
 
71
 
-
 
72
        'MS.NET2012' =>  { 'def'        => 'vcwin32_net2012.def' ,
-
 
73
                           'buildcmd'   => 'devenv =DSW= /build =TYPE= /useenv /out =LOG=' ,
-
 
74
                           'cleancmd'   => 'devenv =DSW= /clean =TYPE= /useenv' ,
-
 
75
                           'tmp'        => 'vc110',
-
 
76
                           'VSCOMPILER' => '3',
-
 
77
                           'GenManifest' => '1',
71
                           
78
                           },
72
                           
79
                           
73
    );
80
    );
74
 
81
 
75
 
82
 
76
##############################################################################
83
##############################################################################
Line 113... Line 120...
113
            Message( "$toolset_name toolset: unknown platform argument $_ -- ignored\n" );
120
            Message( "$toolset_name toolset: unknown platform argument $_ -- ignored\n" );
114
        }
121
        }
115
    }
122
    }
116
 
123
 
117
#.. Validate SDK version
124
#.. Validate SDK version
118
#   Currently three versions are supported
125
#   Currently six versions are supported
119
#       1) MSVC6            - As provided via Visual Studio
126
#       1) MSVC6            - As provided via Visual Studio
120
#       2) MSVS.net 2003    - Used to create .NET applications
127
#       2) MSVS.net 2003    - Used to create .NET applications
121
#       2) MSVS.net 2005    - Used to create .NET applications
128
#       3) MSVS.net 2005    - Used to create .NET applications
-
 
129
#       4) MSVS.net 2008    - Used to create .NET applications
-
 
130
#       5) MSVS.net 2010    - Used to create .NET applications
-
 
131
#       6) MSVS.net 2012    - Used to create .NET applications
122
#
132
#
123
    $toolset_info = $ToolsetVersion{$toolset_version};
133
    $toolset_info = $ToolsetVersion{$toolset_version};
124
    Error( "Unknown version: $toolset_version" ) unless ( defined $toolset_info );
134
    Error( "Unknown version: $toolset_version" ) unless ( defined $toolset_info );
125
 
135
 
126
 
136