閱讀英文

共用方式為


AddCommonConfig

將預設組態加入至專案中。

function AddCommonConfig( 
   oProj, 
   strProjectName  
);

參數

  • oProj
    選取的專案。

  • strProjectName
    專案的名稱。

備註

呼叫此函式將預設的程式碼模型組態加入至精靈所建立的專案中。 您可以指定發行 (Release) 組態或是偵錯 (Debug) 組態。 下表列出每種預設組態類型之程式碼模型物件的預設屬性設定。

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";

請參閱

工作

建立自訂精靈

概念

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

設計精靈

其他資源

C++ 精靈的 JScript 函式