AddCommonConfig
將預設組態加入至專案中。
function AddCommonConfig(
oProj,
strProjectName
);
oProj
選取的專案。strProjectName
專案的名稱。
呼叫此函式將預設的程式碼模型組態加入至精靈所建立的專案中。 您可以指定發行 (Release) 組態或是偵錯 (Debug) 組態。 下表列出每種預設組態類型之程式碼模型物件的預設屬性設定。
Visual C++ 編譯器工具物件
物件屬性 |
發行組態設定 |
偵錯組態設定 |
---|---|---|
pchUseUsingSpecific |
pchUseUsingSpecific |
|
3 |
3 |
|
不適用 |
true |
|
debugEnabled |
debugEditAndContinue |
|
optimizeMaxSpeed |
不適用 |
|
不適用 |
runtimeBasicCheckAll |
|
true |
true |
|
true |
不適用 |
|
true |
不適用 |
|
true |
不適用 |
Visual C++ 組態物件
物件屬性 |
發行組態設定 |
偵錯組態設定 |
---|---|---|
"Release" |
"Debug" |
|
"Release" |
"Debug" |
Visual C++ 連結器工具物件
物件屬性 |
發行組態設定 |
偵錯組態設定 |
---|---|---|
subSystemWindows |
subSystemWindows |
|
machineX86 |
machineX86 |
|
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";