diff options
author | SupSuper | 2019-04-16 01:09:32 +0100 |
---|---|---|
committer | Matan Bareket | 2019-04-20 07:47:25 -0400 |
commit | fd0d65496ee22a1b5e894545996cf361d20dab31 (patch) | |
tree | 6dfaa0a7f2f7fdb07ff30e32148dd9499f6649fc /devtools/create_project | |
parent | f2c4913bbc43468326b5eb936a393310a035f9e3 (diff) | |
download | scummvm-rg350-fd0d65496ee22a1b5e894545996cf361d20dab31.tar.gz scummvm-rg350-fd0d65496ee22a1b5e894545996cf361d20dab31.tar.bz2 scummvm-rg350-fd0d65496ee22a1b5e894545996cf361d20dab31.zip |
CREATE_PROJECT: Auto-detect Visual Studio version if not specified
This removes the need for separate scripts for every version
Diffstat (limited to 'devtools/create_project')
-rw-r--r-- | devtools/create_project/create_project.cpp | 51 | ||||
-rw-r--r-- | devtools/create_project/create_project.h | 19 |
2 files changed, 62 insertions, 8 deletions
diff --git a/devtools/create_project/create_project.cpp b/devtools/create_project/create_project.cpp index 52d8dc335e..2f116a9e90 100644 --- a/devtools/create_project/create_project.cpp +++ b/devtools/create_project/create_project.cpp @@ -134,7 +134,7 @@ int main(int argc, char *argv[]) { ProjectType projectType = kProjectNone; const MSVCVersion* msvc = NULL; - int msvcVersion = 12; + int msvcVersion = 0; // Parse command line arguments using std::cout; @@ -479,6 +479,17 @@ int main(int argc, char *argv[]) { break; case kProjectMSVC: + // Auto-detect if no version is specified + if (msvcVersion == 0) { + msvcVersion = getInstalledMSVC(); + if (msvcVersion == 0) { + std::cerr << "ERROR: No Visual Studio versions found, please specify one with \"--msvc-version\"\n"; + return -1; + } else { + cout << "Visual Studio " << msvcVersion << " detected\n\n"; + } + } + msvc = getMSVCVersion(msvcVersion); if (!msvc) { std::cerr << "ERROR: Unsupported version: \"" << msvcVersion << "\" passed to \"--msvc-version\"!\n"; @@ -709,7 +720,7 @@ void displayHelp(const char *exe) { for (MSVCList::const_iterator i = msvc.begin(); i != msvc.end(); ++i) cout << " " << i->version << " stands for \"" << i->name << "\"\n"; - cout << " The default is \"12\", thus \"Visual Studio 2013\"\n" + cout << " If no version is set, the latest installed version is used\n" " --build-events Run custom build events as part of the build\n" " (default: false)\n" " --installer Create installer after the build (implies --build-events)\n" @@ -1181,6 +1192,42 @@ const MSVCVersion *getMSVCVersion(int version) { return NULL; } +int getInstalledMSVC() { + int latest = 0; +#if defined(_WIN32) || defined(WIN32) + // Use the Visual Studio Installer to get the latest version + const char *vsWhere = "\"\"%PROGRAMFILES(X86)%\\Microsoft Visual Studio\\Installer\\vswhere.exe\" -latest -legacy -property installationVersion\""; + FILE *pipe = _popen(vsWhere, "rt"); + if (pipe != NULL) { + char version[50]; + if (fgets(version, 50, pipe) != NULL) { + latest = atoi(version); + } + _pclose(pipe); + } + + // Use the registry to get the latest version + if (latest == 0) { + HKEY key; + LSTATUS err = RegOpenKeyEx(HKEY_LOCAL_MACHINE, "SOFTWARE\\Microsoft\\VisualStudio\\SxS\\VS7", 0, KEY_QUERY_VALUE | KEY_WOW64_32KEY, &key); + if (err == ERROR_SUCCESS && key != NULL) { + const MSVCList msvc = getAllMSVCVersions(); + for (MSVCList::const_reverse_iterator i = msvc.rbegin(); i != msvc.rend(); ++i) { + std::ostringstream version; + version << i->version << ".0"; + err = RegQueryValueEx(key, version.str().c_str(), NULL, NULL, NULL, NULL); + if (err == ERROR_SUCCESS) { + latest = i->version; + break; + } + } + RegCloseKey(key); + } + } +#endif + return latest; +} + namespace CreateProjectTool { ////////////////////////////////////////////////////////////////////////// diff --git a/devtools/create_project/create_project.h b/devtools/create_project/create_project.h index 8295deb3c2..1f3e91f7b4 100644 --- a/devtools/create_project/create_project.h +++ b/devtools/create_project/create_project.h @@ -285,12 +285,12 @@ void NORETURN_PRE error(const std::string &message) NORETURN_POST; */ struct MSVCVersion { int version; ///< Version number passed as parameter. - const char* name; ///< Full program name. - const char* solutionFormat; ///< Format used for solution files. - const char* solutionVersion; ///< Version number used in solution files. - const char* project; ///< Version number used in project files. - const char* toolsetMSVC; ///< Toolset version for MSVC compiler. - const char* toolsetLLVM; ///< Toolset version for Clang/LLVM compiler. + const char *name; ///< Full program name. + const char *solutionFormat; ///< Format used for solution files. + const char *solutionVersion; ///< Version number used in solution files. + const char *project; ///< Version number used in project files. + const char *toolsetMSVC; ///< Toolset version for MSVC compiler. + const char *toolsetLLVM; ///< Toolset version for Clang/LLVM compiler. }; typedef std::list<MSVCVersion> MSVCList; @@ -309,6 +309,13 @@ MSVCList getAllMSVCVersions(); */ const MSVCVersion *getMSVCVersion(int version); +/** + * Auto-detects the latest version of Visual Studio installed. + * + * @return Version number, or 0 if no installations were found. + */ +int getInstalledMSVC(); + namespace CreateProjectTool { /** |