tugger_windows/
lib.rs

1// This Source Code Form is subject to the terms of the Mozilla Public
2// License, v. 2.0. If a copy of the MPL was not distributed with this
3// file, You can obtain one at https://mozilla.org/MPL/2.0/.
4
5/*! Windows support code. */
6
7mod sdk;
8#[cfg(target_family = "windows")]
9pub use sdk::find_windows_sdk_current_arch_bin_path;
10pub use sdk::target_arch_to_windows_sdk_platform_path;
11mod util;
12mod vc_redistributable;
13pub use vc_redistributable::{
14    find_visual_cpp_redistributable, VcRedistributablePlatform, VC_REDIST_ARM64, VC_REDIST_X64,
15    VC_REDIST_X86,
16};
17mod vswhere;
18pub use vswhere::find_vswhere;