summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio10Win64Generator.h
Commit message (Collapse)AuthorAgeFilesLines
* VS: Remove platform specific generator filesPatrick Gansterer2012-11-191-34/+0
| | | | Move the whole logic into the base class and the factory.
* VS: Remove EnableLanguage from platform-specific generatorsPatrick Gansterer2012-11-191-3/+0
| | | | Move the logic into the base class to remove duplicated code.
* VS: Remove GetPlatformName from platform-specific generatorsPatrick Gansterer2012-11-191-2/+0
| | | | | Use the existing ArchitectureId to generate the PlatformName to reduce duplicated information in the classes.
* VS: Remove AddPlatformDefinitions from platform-specific generatorsPatrick Gansterer2012-11-191-2/+0
| | | | | Move the logic for handling platform specific defines from the subclasses into the cmGlobalVisualStudioGenerator base class.
* Make cmGlobalGenerator::GetDocumentation() a static functionPatrick Gansterer2012-11-191-1/+1
| | | | | Making the function static allows us to call it directly, without creating and removing an instance of the generator.
* Introduce the abstract class cmGlobalGeneratorFactoryPatrick Gansterer2012-11-191-2/+3
| | | | | This new abstract class allows us move some logic from the cmGlobalGenerator into its own layer in a next step.
* VS: Factor Find64BitTools out of Win64 generator to parentMatej Hribernik2011-06-201-1/+0
| | | | It will be shared with a forthcoming IA64 generator.
* Enable 64-bit tools with VS 2010 Express (#9981, #10722)Brad King2010-12-011-0/+3
| | | | | | | The Express Edition does not come with 64-bit tools, but one can install the "Microsoft Windows SDK v7.1" to get them. Detect this case and check for the SDK. If found, set PlatformToolset to use the SDK tools. Otherwise, fail with a concise and informative error.
* VS: Convert PlatformName member to a virtual methodPatrick Gansterer2010-08-241-0/+2
|
* Teach VS generators to set the MACHINE type correctly.Bill Hoffman2009-11-201-2/+2
|
* WIP: VS 10 Win64 generatorBrad King2009-10-221-0/+36
See issue #9754.