diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-03-30 01:07:36 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-03-30 01:07:36 +0300 |
commit | ef04530c9862d3cb03fcb59e74a8cf551eb84a6a (patch) | |
tree | 56df1d5462fffa8366e2fa78617e9feabcb3486f /project/ci/appveyor/boost.py | |
parent | project.build.build: more restrictive defaults (diff) | |
download | cmake-common-ef04530c9862d3cb03fcb59e74a8cf551eb84a6a.tar.gz cmake-common-ef04530c9862d3cb03fcb59e74a8cf551eb84a6a.zip |
project.boost: support --mingw for Travis/AppVeyor
Diffstat (limited to 'project/ci/appveyor/boost.py')
-rw-r--r-- | project/ci/appveyor/boost.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/project/ci/appveyor/boost.py b/project/ci/appveyor/boost.py index 875d681..cfaa10c 100644 --- a/project/ci/appveyor/boost.py +++ b/project/ci/appveyor/boost.py @@ -74,6 +74,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') @@ -98,6 +100,7 @@ def build_appveyor(argv=None): configurations=(_get_configuration(),), link=args.link, runtime_link=args.runtime_link, + mingw=args.mingw, b2_args=args.b2_args) build(params) |