다음을 통해 공유


AddCommonConfig

기본 구성을 프로젝트에 추가합니다.

function AddCommonConfig( 
   oProj, 
   strProjectName  
);

매개 변수

  • oProj
    선택한 프로젝트입니다.

  • strProjectName
    프로젝트의 이름입니다.

설명

마법사를 사용하여 만드는 프로젝트에 기본 코드 모델 구성을 추가하려면 이 함수를 호출합니다.릴리스 구성 또는 디버그 구성 중 하나를 지정할 수 있습니다.다음 표에서는 각 구성 형식에 사용되는 코드 모델 개체의 기본 속성 설정을 보여 줍니다.

Visual C++ 컴파일러 도구 개체

개체 속성

릴리스 구성 설정

디버그 구성 설정

UsePrecompiledHeader

pchUseUsingSpecific

pchUseUsingSpecific

WarningLevel

3

3

MinimalRebuild

해당 없음

true

DebugInformationFormat

debugEnabled

debugEditAndContinue

Optimization

optimizeMaxSpeed

해당 없음

BasicRuntimeChecks

해당 없음

runtimeBasicCheckAll

Detect64BitPortabilityProblems

true

true

OmitFramePointers

true

해당 없음

EnableFunctionLevelLinking

true

해당 없음

StringPooling

true

해당 없음

Visual C++ 구성 개체

개체 속성

릴리스 구성 설정

디버그 구성 설정

IntermediateDirectory

"Release"

"Debug"

OutputDirectory

"Release"

"Debug"

Visual C++ 링커 도구 개체

개체 속성

릴리스 구성 설정

디버그 구성 설정

SubSystem

subSystemWindows

subSystemWindows

TargetMachine

machineX86

machineX86

GenerateDebugInformation

true

true

예제

// Create the Visual C++ project.
selProj = CreateProject(strProjectName, strProjectPath);
// Add the common configuration to the project.
   AddCommonConfig(selProj, strProjectName);
   selProj.Object.keyword = "MyProj";

참고 항목

작업

사용자 지정 마법사 만들기

개념

공용 JScript 함수를 사용하여 C++ 마법사 사용자 지정

마법사 디자인

기타 리소스

C++ 마법사에서 사용하는 JScript 함수