build: Also accept correct MSVC version

This is needed because MSVC doesn't always define cplusplus version.
This commit is contained in:
Joni Räsänen 2021-06-02 11:02:21 +03:00
parent 984647cad6
commit ae57fb6ce9
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#pragma once
#if __cplusplus >= 201703L
#if __cplusplus >= 201703L || _MSC_VER >= 1911
#if __has_include(<cryptopp/aes.h>) && \
__has_include(<cryptopp/base32.h>) && \
__has_include(<cryptopp/cryptlib.h>) && \