示例#1
0
 public void Visit(CxxLibraryTarget target)
 {
     projects_ [target] = new CxxProject(
         sourcePath_, targetPath_, target, configurationPlatforms_);
 }
示例#2
0
 public CxxProject(string sourcePath, string targetPath,
                   CxxLibraryTarget target, ConfigurationPlatforms configurationPlatforms)
     : this(sourcePath, targetPath, target as CxxTarget, configurationPlatforms, ProjectType.StaticLibrary)
 {
 }