mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-24 23:28:32 -05:00
VS : Support WIN32_EXECUTABLE on SDK style projects
This commit is contained in:
@@ -955,7 +955,11 @@ void cmVisualStudio10TargetGenerator::WriteSdkStyleProjectFile(
|
|||||||
"executables."));
|
"executables."));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
outputType = "Exe";
|
if (cmIsOn(win32)) {
|
||||||
|
outputType = "WinExe";
|
||||||
|
} else {
|
||||||
|
outputType = "Exe";
|
||||||
|
}
|
||||||
} break;
|
} break;
|
||||||
case cmStateEnums::UTILITY:
|
case cmStateEnums::UTILITY:
|
||||||
case cmStateEnums::INTERFACE_LIBRARY:
|
case cmStateEnums::INTERFACE_LIBRARY:
|
||||||
|
|||||||
Reference in New Issue
Block a user