Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow to select specific version of msc in command line. #2076

Merged
merged 1 commit into from
Jul 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion src/_premake_init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1790,7 +1790,15 @@
{ "clang", "Clang (clang)" },
{ "gcc", "GNU GCC (gcc/g++)" },
{ "mingw", "MinGW GCC (gcc/g++)" },
{ "msc", "Microsoft compiler" }
{ "msc-v80", "Microsoft compiler (Visual Studio 2005)" },
{ "msc-v90", "Microsoft compiler (Visual Studio 2008)" },
{ "msc-v100", "Microsoft compiler (Visual Studio 2010)" },
{ "msc-v110", "Microsoft compiler (Visual Studio 2012)" },
{ "msc-v120", "Microsoft compiler (Visual Studio 2013)" },
{ "msc-v140", "Microsoft compiler (Visual Studio 2015)" },
{ "msc-v141", "Microsoft compiler (Visual Studio 2017)" },
{ "msc-v142", "Microsoft compiler (Visual Studio 2019)" },
{ "msc-v143", "Microsoft compiler (Visual Studio 2022)" },
}
}

Expand Down