// ASX build script.
//
// Exposes `cargo_release_profile` as a cfg flag when the active Cargo profile
// is `release`. This allows `compile_error!` guards in `lib.rs` to reject
// dangerous feature combinations (e.g. `testing` in a release build) based on
// the actual profile name rather than the `debug_assertions` heuristic, which
// can be overridden by embedders via `[profile.release] debug-assertions = true`.
//
// Usage in lib.rs:
// #[cfg(all(feature = "testing", cargo_release_profile))]
// compile_error!("...");