build: Also accept correct MSVC version
This is needed because MSVC doesn't always define cplusplus version.
This commit is contained in:
parent
984647cad6
commit
ae57fb6ce9
|
@ -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>) && \
|
||||
|
|
Loading…
Reference in New Issue