mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-18 21:23:02 +08:00
Make crt search case insensitive
This commit is contained in:
parent
bf7978dcf9
commit
22f681c82d
@ -16,7 +16,7 @@ namespace vcpkg
|
||||
|
||||
const std::regex& BuildType::crt_regex() const
|
||||
{
|
||||
static const std::regex r(this->m_crt_regex_as_string);
|
||||
static const std::regex r(this->m_crt_regex_as_string, std::regex_constants::icase);
|
||||
return r;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user