thound 0.1.1

Finds the folders with VC toolchain and Windows SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
fn main() {
	let info = thound::find_vc_and_windows_sdk();
	if let Some(info) = info {
		if let Some(sdk) = info.sdk {
			println!("Windows SDK is present:");
			println!("{sdk:#?}")
		}

		if let Some(toolchain) = info.toolchain {
			println!("VC toolchain is present:");
			println!("{toolchain:#?}")
		}
	} else {
		eprintln!("We failed to find out the toolchain & SDK information.");
	}
}