wdk 0.3.0

Safe idiomatic bindings to APIs available in the Windows Development Kit (WDK)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) Microsoft Corporation
// License: MIT OR Apache-2.0

//! Build script for the `wdk` crate.
//!
//! Based on the [`wdk_build::Config`] parsed from the build tree, this build
//! script will provide the `wdk` crate with `cfg` settings to conditionally
//! compile code.

fn main() -> Result<(), wdk_build::ConfigError> {
    tracing_subscriber::fmt().pretty().init();

    wdk_build::configure_wdk_library_build()
}