sisyphus32 1.0.0

Feature-based UCI Chess Engine
Documentation
// Recommended usage: `cargo run --bin build_all`
// NOTE: This has only been tested for windows

use std::{env, process::Command};

use sisyphus32::versions::VERSIONS;

const PROFILE_NAME: &str = "release-all";
const PACKAGE_NAME: &str = "sisyphus32";

fn main() {
    env::set_var("RUSTFLAGS", "-Awarnings");

    for version_name in VERSIONS {
        // Build feature binary
        let status = Command::new("cargo")
            .args(["build", &format!("--profile={PROFILE_NAME}"), "--no-default-features", "--features", version_name, "--bin", PACKAGE_NAME])
            .status()
            .expect("Failed to execute cargo build");

        if !status.success() {
            eprintln!("Build failed for version: {}", version_name);
            continue;
        }

        // Rename binary
        let target_dir = format!("target/{PROFILE_NAME}");
        let from = format!("{target_dir}/{PACKAGE_NAME}.exe");
        let to = format!("{target_dir}/{PACKAGE_NAME}_{version_name}.exe");

        std::fs::rename(&from, &to).expect("Failed to rename binary");
        println!("Built and renamed: {}\n", to);
    }
}