mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-23 19:17:10 +01:00
Update check for VS2015
This commit is contained in:
parent
1c879a4b92
commit
61922f919f
@ -10,7 +10,8 @@
|
|||||||
|
|
||||||
namespace fs
|
namespace fs
|
||||||
{
|
{
|
||||||
#if defined(_WIN32) || defined(__cpp_lib_filesystem)
|
// VS2015 (_MSC_VER 1900) uses std::experimental::filesystem
|
||||||
|
#if (defined(_MSC_VER) && _MSC_VER > 1900) || defined(__cpp_lib_filesystem)
|
||||||
namespace stdfs = std::filesystem;
|
namespace stdfs = std::filesystem;
|
||||||
#else
|
#else
|
||||||
namespace stdfs = std::experimental::filesystem;
|
namespace stdfs = std::experimental::filesystem;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user