xplane_sdk_sys/
lib.rs

1#![allow(
2    non_snake_case,
3    non_camel_case_types,
4    non_upper_case_globals,
5    rustdoc::bare_urls,
6    rustdoc::invalid_rust_codeblocks
7)]
8#![doc = include_str!("../README.md")]
9
10// Generate bindings
11#[cfg(feature = "generate-bindings")]
12include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
13
14// Use pre-built bindings
15#[cfg(not(feature = "generate-bindings"))]
16include!("pre-built-bindings.rs");