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

Commit

Permalink
Build libstdc++11 as well (pure_c=False).
Browse files Browse the repository at this point in the history
  • Loading branch information
bilke committed Jan 3, 2018
1 parent 4d741ea commit f83ad66
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f83ad66

Please sign in to comment.