diff --git a/.gitignore b/.gitignore index 2f8675155..82e4d9b53 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,5 @@ stdcerr # JetBrains /.idea + +!build.jam diff --git a/build.jam b/build.jam new file mode 100644 index 000000000..fbf125ef0 --- /dev/null +++ b/build.jam @@ -0,0 +1,62 @@ +# Copyright René Ferdinand Rivera Morell 2024 +# Distributed under 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) + +require-b2 5.1.0 ; + +import-search /boost/config/checks ; + +import project ; +import config : requires ; + +project /boost/geometry + : common-requirements + /boost/algorithm//boost_algorithm + /boost/any//boost_any + /boost/array//boost_array + /boost/assert//boost_assert + /boost/concept_check//boost_concept_check + /boost/config//boost_config + /boost/container//boost_container + /boost/core//boost_core + /boost/endian//boost_endian + /boost/function_types//boost_function_types + /boost/fusion//boost_fusion + /boost/integer//boost_integer + /boost/iterator//boost_iterator + /boost/lexical_cast//boost_lexical_cast + /boost/math//boost_math + /boost/mpl//boost_mpl + /boost/multiprecision//boost_multiprecision + /boost/numeric_conversion//boost_numeric_conversion + /boost/polygon//boost_polygon + /boost/predef//boost_predef + /boost/qvm//boost_qvm + /boost/range//boost_range + /boost/rational//boost_rational + /boost/serialization//boost_serialization + /boost/static_assert//boost_static_assert + /boost/thread//boost_thread + /boost/throw_exception//boost_throw_exception + /boost/tokenizer//boost_tokenizer + /boost/tuple//boost_tuple + /boost/type_traits//boost_type_traits + /boost/variant//boost_variant + /boost/variant2//boost_variant2 + include + : requirements + [ requires + cxx14_constexpr + cxx14_return_type_deduction + ] + msvc:on + ; + +explicit + [ alias boost_geometry ] + [ alias all : boost_geometry test example doc/src/examples index ] + ; + +call-if : boost-library geometry + ;