From ef04530c9862d3cb03fcb59e74a8cf551eb84a6a Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 30 Mar 2020 01:07:36 +0300 Subject: project.boost: support --mingw for Travis/AppVeyor --- project/ci/travis/boost.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'project/ci/travis/boost.py') diff --git a/project/ci/travis/boost.py b/project/ci/travis/boost.py index 0830544..80ed01c 100644 --- a/project/ci/travis/boost.py +++ b/project/ci/travis/boost.py @@ -72,6 +72,8 @@ def _parse_args(argv=None): parser.add_argument('--runtime-link', metavar='LINKAGE', type=Linkage.parse, help='how the libraries link to the runtime') + parser.add_argument('--mingw', action='store_true', + help='build using MinGW-w64') parser.add_argument('b2_args', metavar='B2_ARG', nargs='*', default=[], help='additional b2 arguments, to be passed verbatim') @@ -96,6 +98,7 @@ def build_travis(argv=None): configurations=(_get_configuration(),), link=args.link, runtime_link=args.runtime_link, + mingw=args.mingw, b2_args=args.b2_args) build(params) -- cgit v1.2.3