1 | //! These modules are all glue to support reading the MSVC version from |
---|---|
2 | //! the registry and from COM interfaces. |
3 | |
4 | // This is used in the crate's public API, so don't use #[cfg(windows)] |
5 | pub mod find_tools; |
6 | |
7 | #[cfg(windows)] |
8 | pub(crate) mod windows_sys; |
9 | |
10 | #[cfg(windows)] |
11 | mod registry; |
12 | #[cfg(windows)] |
13 | #[macro_use] |
14 | mod winapi; |
15 | #[cfg(windows)] |
16 | mod com; |
17 | #[cfg(windows)] |
18 | mod setup_config; |
19 | #[cfg(windows)] |
20 | mod vs_instances; |
21 |