Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/predef/platform/windows_runtime.h @ 133:4acb5d8d80b6 tip
Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author | Chris Cannam |
---|---|
date | Tue, 30 Jul 2019 12:25:44 +0100 |
parents | f46d142149f5 |
children |
rev | line source |
---|---|
Chris@102 | 1 /* |
Chris@102 | 2 Copyright (c) Microsoft Corporation 2014 |
Chris@102 | 3 Distributed under the Boost Software License, Version 1.0. |
Chris@102 | 4 (See accompanying file LICENSE_1_0.txt or copy at |
Chris@102 | 5 http://www.boost.org/LICENSE_1_0.txt) |
Chris@102 | 6 */ |
Chris@102 | 7 |
Chris@102 | 8 #ifndef BOOST_PREDEF_PLAT_WINDOWS_RUNTIME_H |
Chris@102 | 9 #define BOOST_PREDEF_PLAT_WINDOWS_RUNTIME_H |
Chris@102 | 10 |
Chris@102 | 11 #include <boost/predef/version_number.h> |
Chris@102 | 12 #include <boost/predef/make.h> |
Chris@102 | 13 #include <boost/predef/os/windows.h> |
Chris@102 | 14 |
Chris@102 | 15 /*` |
Chris@102 | 16 [heading `BOOST_PLAT_WINDOWS_RUNTIME`] |
Chris@102 | 17 |
Chris@102 | 18 [table |
Chris@102 | 19 [[__predef_symbol__] [__predef_version__]] |
Chris@102 | 20 |
Chris@102 | 21 [[`WINAPI_FAMILY == WINAPI_FAMILY_APP`] [__predef_detection__]] |
Chris@102 | 22 [[`WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP`] [__predef_detection__]] |
Chris@102 | 23 ] |
Chris@102 | 24 */ |
Chris@102 | 25 |
Chris@102 | 26 #define BOOST_PLAT_WINDOWS_RUNTIME BOOST_VERSION_NUMBER_NOT_AVAILABLE |
Chris@102 | 27 |
Chris@102 | 28 #if BOOST_OS_WINDOWS && defined(WINAPI_FAMILY) && \ |
Chris@102 | 29 ( WINAPI_FAMILY == WINAPI_FAMILY_APP || WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP ) |
Chris@102 | 30 # undef BOOST_PLAT_WINDOWS_RUNTIME |
Chris@102 | 31 # define BOOST_PLAT_WINDOWS_RUNTIME BOOST_VERSION_NUMBER_AVAILABLE |
Chris@102 | 32 #endif |
Chris@102 | 33 |
Chris@102 | 34 #if BOOST_PLAT_WINDOWS_RUNTIME |
Chris@102 | 35 # define BOOST_PLAT_WINDOWS_RUNTIME_AVALIABLE |
Chris@102 | 36 # include <boost/predef/detail/platform_detected.h> |
Chris@102 | 37 #endif |
Chris@102 | 38 |
Chris@102 | 39 #define BOOST_PLAT_WINDOWS_RUNTIME_NAME "Windows Runtime" |
Chris@102 | 40 |
Chris@102 | 41 #include <boost/predef/detail/test.h> |
Chris@102 | 42 BOOST_PREDEF_DECLARE_TEST(BOOST_PLAT_WINDOWS_RUNTIME,BOOST_PLAT_WINDOWS_RUNTIME_NAME) |
Chris@102 | 43 |
Chris@102 | 44 #endif |