|
|
@@ -11,75 +11,6 @@
|
|
|
#include "cmVisualStudioWCEPlatformParser.h"
|
|
|
#include "cmake.h"
|
|
|
|
|
|
-static const char vs8generatorName[] = "Visual Studio 8 2005";
|
|
|
-
|
|
|
-class cmGlobalVisualStudio8Generator::Factory : public cmGlobalGeneratorFactory
|
|
|
-{
|
|
|
-public:
|
|
|
- cmGlobalGenerator* CreateGlobalGenerator(const std::string& name,
|
|
|
- cmake* cm) const override
|
|
|
- {
|
|
|
- if (strncmp(name.c_str(), vs8generatorName,
|
|
|
- sizeof(vs8generatorName) - 1) != 0) {
|
|
|
- return 0;
|
|
|
- }
|
|
|
-
|
|
|
- const char* p = name.c_str() + sizeof(vs8generatorName) - 1;
|
|
|
- if (p[0] == '\0') {
|
|
|
- return new cmGlobalVisualStudio8Generator(cm, name, "");
|
|
|
- }
|
|
|
-
|
|
|
- if (p[0] != ' ') {
|
|
|
- return 0;
|
|
|
- }
|
|
|
-
|
|
|
- ++p;
|
|
|
-
|
|
|
- if (!strcmp(p, "Win64")) {
|
|
|
- return new cmGlobalVisualStudio8Generator(cm, name, "x64");
|
|
|
- }
|
|
|
-
|
|
|
- cmVisualStudioWCEPlatformParser parser(p);
|
|
|
- parser.ParseVersion("8.0");
|
|
|
- if (!parser.Found()) {
|
|
|
- return 0;
|
|
|
- }
|
|
|
-
|
|
|
- cmGlobalVisualStudio8Generator* ret =
|
|
|
- new cmGlobalVisualStudio8Generator(cm, name, p);
|
|
|
- ret->WindowsCEVersion = parser.GetOSVersion();
|
|
|
- return ret;
|
|
|
- }
|
|
|
-
|
|
|
- void GetDocumentation(cmDocumentationEntry& entry) const override
|
|
|
- {
|
|
|
- entry.Name = std::string(vs8generatorName) + " [arch]";
|
|
|
- entry.Brief = "Deprecated. Generates Visual Studio 2005 project files. "
|
|
|
- "Optional [arch] can be \"Win64\".";
|
|
|
- }
|
|
|
-
|
|
|
- void GetGenerators(std::vector<std::string>& names) const override
|
|
|
- {
|
|
|
- names.push_back(vs8generatorName);
|
|
|
- names.push_back(vs8generatorName + std::string(" Win64"));
|
|
|
- cmVisualStudioWCEPlatformParser parser;
|
|
|
- parser.ParseVersion("8.0");
|
|
|
- const std::vector<std::string>& availablePlatforms =
|
|
|
- parser.GetAvailablePlatforms();
|
|
|
- for (std::string const& i : availablePlatforms) {
|
|
|
- names.push_back("Visual Studio 8 2005 " + i);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- bool SupportsToolset() const override { return false; }
|
|
|
- bool SupportsPlatform() const override { return true; }
|
|
|
-};
|
|
|
-
|
|
|
-cmGlobalGeneratorFactory* cmGlobalVisualStudio8Generator::NewFactory()
|
|
|
-{
|
|
|
- return new Factory;
|
|
|
-}
|
|
|
-
|
|
|
cmGlobalVisualStudio8Generator::cmGlobalVisualStudio8Generator(
|
|
|
cmake* cm, const std::string& name, const std::string& platformName)
|
|
|
: cmGlobalVisualStudio71Generator(cm, platformName)
|
|
|
@@ -87,12 +18,6 @@ cmGlobalVisualStudio8Generator::cmGlobalVisualStudio8Generator(
|
|
|
this->ProjectConfigurationSectionName = "ProjectConfigurationPlatforms";
|
|
|
this->Name = name;
|
|
|
this->ExtraFlagTable = this->GetExtraFlagTableVS8();
|
|
|
- this->Version = VS8;
|
|
|
- std::string vc8Express;
|
|
|
- this->ExpressEdition = cmSystemTools::ReadRegistryValue(
|
|
|
- "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VCExpress\\8.0\\Setup\\VC;"
|
|
|
- "ProductDir",
|
|
|
- vc8Express, cmSystemTools::KeyWOW64_32);
|
|
|
}
|
|
|
|
|
|
std::string cmGlobalVisualStudio8Generator::FindDevEnvCommand()
|
|
|
@@ -143,13 +68,6 @@ bool cmGlobalVisualStudio8Generator::SetGeneratorPlatform(std::string const& p,
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-// output standard header for dsw file
|
|
|
-void cmGlobalVisualStudio8Generator::WriteSLNHeader(std::ostream& fout)
|
|
|
-{
|
|
|
- fout << "Microsoft Visual Studio Solution File, Format Version 9.00\n";
|
|
|
- fout << "# Visual Studio 2005\n";
|
|
|
-}
|
|
|
-
|
|
|
std::string cmGlobalVisualStudio8Generator::GetGenerateStampList()
|
|
|
{
|
|
|
return "generate.stamp.list";
|
|
|
@@ -165,46 +83,6 @@ bool cmGlobalVisualStudio8Generator::UseFolderProperty()
|
|
|
return IsExpressEdition() ? false : cmGlobalGenerator::UseFolderProperty();
|
|
|
}
|
|
|
|
|
|
-std::string cmGlobalVisualStudio8Generator::GetUserMacrosDirectory()
|
|
|
-{
|
|
|
- // Some VS8 sp0 versions cannot run macros.
|
|
|
- // See http://support.microsoft.com/kb/928209
|
|
|
- const char* vc8sp1Registry =
|
|
|
- "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\"
|
|
|
- "InstalledProducts\\KB926601;";
|
|
|
- const char* vc8exSP1Registry =
|
|
|
- "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\"
|
|
|
- "InstalledProducts\\KB926748;";
|
|
|
- std::string vc8sp1;
|
|
|
- if (!cmSystemTools::ReadRegistryValue(vc8sp1Registry, vc8sp1) &&
|
|
|
- !cmSystemTools::ReadRegistryValue(vc8exSP1Registry, vc8sp1)) {
|
|
|
- return "";
|
|
|
- }
|
|
|
-
|
|
|
- std::string base;
|
|
|
- std::string path;
|
|
|
-
|
|
|
- // base begins with the VisualStudioProjectsLocation reg value...
|
|
|
- if (cmSystemTools::ReadRegistryValue(
|
|
|
- "HKEY_CURRENT_USER\\Software\\Microsoft\\VisualStudio\\8.0;"
|
|
|
- "VisualStudioProjectsLocation",
|
|
|
- base)) {
|
|
|
- cmSystemTools::ConvertToUnixSlashes(base);
|
|
|
-
|
|
|
- // 8.0 macros folder:
|
|
|
- path = base + "/VSMacros80";
|
|
|
- }
|
|
|
-
|
|
|
- // path is (correctly) still empty if we did not read the base value from
|
|
|
- // the Registry value
|
|
|
- return path;
|
|
|
-}
|
|
|
-
|
|
|
-std::string cmGlobalVisualStudio8Generator::GetUserMacrosRegKeyBase()
|
|
|
-{
|
|
|
- return "Software\\Microsoft\\VisualStudio\\8.0\\vsmacros";
|
|
|
-}
|
|
|
-
|
|
|
bool cmGlobalVisualStudio8Generator::AddCheckTarget()
|
|
|
{
|
|
|
// Add a special target on which all other targets depend that
|