mirror of
https://github.com/mpusz/mp-units.git
synced 2026-02-12 18:09:03 +01:00
15 lines
773 B
Python
15 lines
773 B
Python
from cpt.packager import ConanMultiPackager
|
|
|
|
if __name__ == "__main__":
|
|
builder = ConanMultiPackager(username = "mpusz", login_username = "mpusz",
|
|
channel = "testing",
|
|
stable_branch_pattern = r"v\d+\.\d+\.\d+.*",
|
|
upload = "https://api.bintray.com/conan/mpusz/conan-mpusz",
|
|
remotes = "https://api.bintray.com/conan/martinmoene/nonstd-lite",
|
|
build_policy = "outdated",
|
|
upload_dependencies="all")
|
|
builder.add_common_builds(pure_c=False)
|
|
for settings, options, env_vars, build_requires, reference in builder.items:
|
|
settings["cppstd"] = "20"
|
|
builder.run()
|