libmqm_default/
lib.rs

1/*!
2
3Default structures for the IBM® MQ Interface (MQI) and MQ Administration Interface (MQAI) libraries.
4
5*/
6
7#[cfg(feature = "defaultgen")]
8#[rustfmt::skip]
9mod defaults {
10    include!(concat!(env!("OUT_DIR"), "/defaults.rs"));
11}
12
13#[cfg(not(feature = "defaultgen"))]
14#[cfg_attr(all(target_os = "windows", target_arch = "x86_64"), path = "x86_64-windows-pregen.rs")]
15#[cfg_attr(all(target_os = "linux", target_arch = "x86_64"), path = "x86_64-linux-pregen.rs")]
16#[cfg_attr(target_os = "macos", path = "any-macos-pregen.rs")]
17#[rustfmt::skip]
18mod defaults;
19
20#[doc(inline)]
21pub use defaults::*;