共用方式為


AddFilesToProject

更新:2007 年 11 月

將列於 Templates.inf 中的所有檔案加入至專案中。

 function AddFilesToProject(        oProj,        strProjectName,        InfFile   );

參數

  • oProj
    選取的專案。

  • strProjectName
    專案的名稱。

  • InfFile
    Templates.inf 檔案物件。這個檔案包含精靈完成時所建立的檔名清單。

備註

呼叫此函式將列於 Templates.inf 中的所有檔案加入至專案中。您可以使用此函式來加入樣板檔、資源檔或說明檔。

範例

// Assign the project path and project name.
var strProjectPath = wizard.FindSymbol("PROJECT_PATH");
var strProjectName = wizard.FindSymbol("PROJECT_NAME");

// Create the Visual C++ project and call it "MyProj"
selProj = CreateProject(strProjectName, strProjectPath);
selProj.Object.Keyword = "MyProj";

// Add common and specific configurations to the project.
AddCommonConfig(selProj, strProjectName);
AddSpecificConfig(selProj, strProjectName);

// Set the project filters
SetFilters(selProj);

// Create the project's Templates.inf file 
var InfFile = CreateInfFile();

// Add the files in Templates.inf to the project.
AddFilesToProject(selProj, strProjectName, InfFile);

請參閱

工作

建立自訂精靈

概念

使用 Common JScript 函式自訂 C++ 精靈

設計精靈

參考

CreateInfFile

SetCommonPchSettings

其他資源

C++ 精靈的 JScript 函式