mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-31 05:03:22 +08:00
- Updated naming of msvcrt vector.
This commit is contained in:
parent
63753e86a6
commit
630bcd84b8
@ -57,7 +57,7 @@ namespace vcpkg::PostBuildLint
|
||||
{"msvcrt40.dll", R"(msvcrt40\.dll)"},
|
||||
};
|
||||
|
||||
static const std::vector<OutdatedDynamicCrt> V = [&]() {
|
||||
static const std::vector<OutdatedDynamicCrt> V_NO_MSVCRT = [&]() {
|
||||
auto ret = V_NO_120;
|
||||
ret.push_back({"msvcp120.dll", R"(msvcp120\.dll)"});
|
||||
ret.push_back({"msvcp120_clr0400.dll", R"(msvcp120_clr0400\.dll)"});
|
||||
@ -69,7 +69,7 @@ namespace vcpkg::PostBuildLint
|
||||
if (toolset == "v120")
|
||||
return V_NO_120;
|
||||
else
|
||||
return V;
|
||||
return V_NO_MSVCRT;
|
||||
}
|
||||
|
||||
static LintStatus check_for_files_in_include_directory(const Files::Filesystem& fs,
|
||||
|
Loading…
x
Reference in New Issue
Block a user