mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-26 07:16:10 +01:00
Add CATCH_PLATFORM_WINDOWS_UWP detection macro
This commit is contained in:
parent
dc001fa935
commit
3ca5cf32e5
@ -174,7 +174,7 @@
|
|||||||
|
|
||||||
// Universal Windows platform does not support SEH
|
// Universal Windows platform does not support SEH
|
||||||
// Or console colours (or console at all...)
|
// Or console colours (or console at all...)
|
||||||
# if defined(WINAPI_FAMILY) && (WINAPI_FAMILY == WINAPI_FAMILY_APP)
|
# if defined(CATCH_PLATFORM_WINDOWS_UWP)
|
||||||
# define CATCH_INTERNAL_CONFIG_NO_COLOUR_WIN32
|
# define CATCH_INTERNAL_CONFIG_NO_COLOUR_WIN32
|
||||||
# else
|
# else
|
||||||
# define CATCH_INTERNAL_CONFIG_WINDOWS_SEH
|
# define CATCH_INTERNAL_CONFIG_WINDOWS_SEH
|
||||||
|
@ -24,6 +24,10 @@
|
|||||||
|
|
||||||
#elif defined(WIN32) || defined(__WIN32__) || defined(_WIN32) || defined(_MSC_VER) || defined(__MINGW32__)
|
#elif defined(WIN32) || defined(__WIN32__) || defined(_WIN32) || defined(_MSC_VER) || defined(__MINGW32__)
|
||||||
# define CATCH_PLATFORM_WINDOWS
|
# define CATCH_PLATFORM_WINDOWS
|
||||||
|
|
||||||
|
# if defined( WINAPI_FAMILY ) && ( WINAPI_FAMILY == WINAPI_FAMILY_APP )
|
||||||
|
# define CATCH_PLATFORM_WINDOWS_UWP
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif // CATCH_PLATFORM_HPP_INCLUDED
|
#endif // CATCH_PLATFORM_HPP_INCLUDED
|
||||||
|
Loading…
Reference in New Issue
Block a user