annotate DEPENDENCIES/generic/include/boost/predef/platform/windows_phone.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_PHONE_H
Chris@102 9 #define BOOST_PREDEF_PLAT_WINDOWS_PHONE_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_PHONE`]
Chris@102 17
Chris@102 18 [table
Chris@102 19 [[__predef_symbol__] [__predef_version__]]
Chris@102 20
Chris@102 21 [[`WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP`] [__predef_detection__]]
Chris@102 22 ]
Chris@102 23 */
Chris@102 24
Chris@102 25 #define BOOST_PLAT_WINDOWS_PHONE BOOST_VERSION_NUMBER_NOT_AVAILABLE
Chris@102 26
Chris@102 27 #if BOOST_OS_WINDOWS && defined(WINAPI_FAMILY) && WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP
Chris@102 28 # undef BOOST_PLAT_WINDOWS_PHONE
Chris@102 29 # define BOOST_PLAT_WINDOWS_PHONE BOOST_VERSION_NUMBER_AVAILABLE
Chris@102 30 #endif
Chris@102 31
Chris@102 32 #if BOOST_PLAT_WINDOWS_PHONE
Chris@102 33 # define BOOST_PLAT_WINDOWS_PHONE_AVALIABLE
Chris@102 34 # include <boost/predef/detail/platform_detected.h>
Chris@102 35 #endif
Chris@102 36
Chris@102 37 #define BOOST_PLAT_WINDOWS_PHONE_NAME "Windows Phone"
Chris@102 38
Chris@102 39 #include <boost/predef/detail/test.h>
Chris@102 40 BOOST_PREDEF_DECLARE_TEST(BOOST_PLAT_WINDOWS_PHONE,BOOST_PLAT_WINDOWS_PHONE_NAME)
Chris@102 41
Chris@102 42 #endif