| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Subversion
Revision: 32012
Author: djh
Date: 06 Jul 2008 13:27:12
Changes:Fix Visual Studio meta-projects on VS2008.
* build/generator/gen_vcnet_vcproj.py
(Generator.write_project): Change the meta-project targets (such as
__ALL__) to Utility project types so they don't cause issues when building
with VS2008.
| ... | ...@@ -36,7 +36,9 @@ | |
| 36 | 36 | def write_project(self, target, fname): |
| 37 | 37 | "Write a Project (.vcproj)" |
| 38 | 38 | |
| 39 | if isinstance(target, gen_base.TargetExe): | |
| 39 | if isinstance(target, gen_base.TargetProject): | |
| 40 | config_type=10 | |
| 41 | elif isinstance(target, gen_base.TargetExe): | |
| 40 | 42 | #EXE |
| 41 | 43 | config_type=1 |
| 42 | 44 | elif isinstance(target, gen_base.TargetJava): |