add boost on mac
This commit is contained in:
26
macx64/include/boost/geometry/core/config.hpp
Normal file
26
macx64/include/boost/geometry/core/config.hpp
Normal file
@@ -0,0 +1,26 @@
|
||||
// Boost.Geometry
|
||||
|
||||
// Copyright (c) 2018 Oracle and/or its affiliates.
|
||||
// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
|
||||
|
||||
// Use, modification and distribution is subject to the Boost Software License,
|
||||
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#ifndef BOOST_GEOMETRY_CORE_CONFIG_HPP
|
||||
#define BOOST_GEOMETRY_CORE_CONFIG_HPP
|
||||
|
||||
#include <boost/config.hpp>
|
||||
|
||||
// NOTE: workaround for VC++ 12 (aka 2013): cannot specify explicit initializer for arrays
|
||||
#if !defined(BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX) && (!defined(_MSC_VER) || (_MSC_VER >= 1900))
|
||||
#define BOOST_GEOMETRY_CXX11_ARRAY_UNIFIED_INITIALIZATION
|
||||
#endif
|
||||
|
||||
// Rescaling is turned on, unless NO_ROBUSTNESS is defined
|
||||
// In future versions of Boost.Geometry, it will be turned off by default
|
||||
#if ! defined(BOOST_GEOMETRY_NO_ROBUSTNESS)
|
||||
#define BOOST_GEOMETRY_USE_RESCALING
|
||||
#endif
|
||||
|
||||
#endif // BOOST_GEOMETRY_CORE_CONFIG_HPP
|
||||
Reference in New Issue
Block a user