| 48 | } |
| 49 | |
| 50 | std::string cmGlobalVisualStudio8Generator::FindDevEnvCommand() |
| 51 | { |
| 52 | // First look for VCExpress. |
| 53 | std::string vsxcmd; |
| 54 | std::string vsxkey = |
| 55 | cmStrCat(R"(HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VCExpress\)", |
| 56 | this->GetIDEVersion(), ";InstallDir"); |
| 57 | if (cmSystemTools::ReadRegistryValue(vsxkey, vsxcmd, |
| 58 | cmSystemTools::KeyWOW64_32)) { |
| 59 | cmSystemTools::ConvertToUnixSlashes(vsxcmd); |
| 60 | vsxcmd += "/VCExpress.exe"; |
| 61 | return vsxcmd; |
| 62 | } |
| 63 | // Now look for devenv. |
| 64 | return this->cmGlobalVisualStudio7Generator::FindDevEnvCommand(); |
| 65 | } |
| 66 | |
| 67 | void cmGlobalVisualStudio8Generator::EnableLanguage( |
| 68 | std::vector<std::string> const& lang, cmMakefile* mf, bool optional) |
nothing calls this directly
no test coverage detected