1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
use std::path::PathBuf; mod wine; #[cfg(feature = "wine-fonts")] mod fonts; #[cfg(feature = "wine-proton")] mod proton; #[cfg(feature = "dxvk")] mod dxvk; pub fn get_test_dir() -> PathBuf { std::env::temp_dir().join("wincompatlib-test") }