AddFilesToProject
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);
참고 항목
작업
참조
개념
공용 JScript 함수를 사용하여 C++ 마법사 사용자 지정