Skip to content
This repository was archived by the owner on Aug 20, 2024. It is now read-only.

5.9.2 #43

Open
wants to merge 16 commits into
base: release/5.9.2
Choose a base branch
from
Prev Previous commit
Next Next commit
Build libstdc++11 as well (pure_c=False).
bilke committed Jan 3, 2018
commit f83ad66029f75dc1fd9a974a298071f9a27fc772
10 changes: 2 additions & 8 deletions build.py
Original file line number Diff line number Diff line change
@@ -2,20 +2,14 @@
import copy

def main():
"""
Main function.
"""

builder = ConanMultiPackager(username="osechet", channel="stable")
builder.add_common_builds()
builder = ConanMultiPackager(username="osechet", archs = ["x86_64"])
builder.add_common_builds(pure_c=False)
filtered_builds = []
for settings, options, env_vars, build_requires in builder.builds:
if settings["compiler"] == "Visual Studio":
if settings["compiler.runtime"] == "MT" or settings["compiler.runtime"] == "MTd":
# Ignore MT runtime
continue
if settings["arch"] != "x86_64":
continue

new_options = copy.copy(options)
new_options["Qt:xmlpatterns"] = True