fork of https://github.com/rustwasm/wasm-pack for the needs of NextGraph.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
531 B
15 lines
531 B
//! Information about the target wasm-pack is currently being compiled for.
|
|
//!
|
|
//! That is, whether we are building wasm-pack for windows vs linux, and x86 vs
|
|
//! x86-64, etc.
|
|
|
|
#![allow(missing_docs)]
|
|
|
|
pub const LINUX: bool = cfg!(target_os = "linux");
|
|
pub const MACOS: bool = cfg!(target_os = "macos");
|
|
pub const WINDOWS: bool = cfg!(target_os = "windows");
|
|
|
|
#[allow(non_upper_case_globals)]
|
|
pub const x86_64: bool = cfg!(target_arch = "x86_64");
|
|
#[allow(non_upper_case_globals)]
|
|
pub const x86: bool = cfg!(target_arch = "x86");
|
|
|