zpack 0.1.15

A fast, configurable package manager which builds programs from source
Documentation
default:
    just --list

dev extra-args="":
    cargo run --features z3_gh_release {{ extra-args }}

release extra-args="":
    #!/bin/bash

    export CFLAGS="-O3 -mtune=native -march=native -flto -fPIC"
    export CXXFLAGS="-O3 -mtune=native -march=native -flto -fPIC"

    cargo run --features z3_bundled --release {{ extra-args }}

pydev:
    maturin develop --features pyo3/extension-module,z3_gh_release

pyrelease:
    #!/bin/bash

    export CFLAGS="-O3 -mtune=native -march=native -flto -fPIC"
    export CXXFLAGS="-O3 -mtune=native -march=native -flto -fPIC"

    maturin build --features pyo3/extension-module,z3_bundled --release

clean:
    cargo clean