xcframework 0.2.1

A Cargo plugin and library for building Apple XCFrameworks
Documentation
1
2
3
4
5
6
7
8
9
10
use xcframework::CliArgs;

fn main() {
    let args = CliArgs::from_env_or_exit();

    if let Err(e) = xcframework::build_from_cli(args) {
        eprintln!("{:?}", e);
        std::process::exit(1);
    }
}