Only load platforms for OS (#288)

* Only load platforms for OS

* Update to version 1.7.10
This commit is contained in:
Philip Kristoffersen
2022-12-28 10:37:11 +01:00
committed by GitHub
parent ffb9b659d5
commit 32c65408a7
5 changed files with 69 additions and 35 deletions
+15 -5
View File
@@ -1,18 +1,28 @@
mod amazon;
#[cfg(target_family = "unix")]
mod bottles;
mod egs;
#[cfg(target_family = "unix")]
mod flatpak;
mod gog;
#[cfg(target_family = "unix")]
mod heroic;
mod itch;
#[cfg(target_family = "unix")]
mod legendary;
#[cfg(target_family = "unix")]
mod lutris;
#[cfg(target_family = "unix")]
mod minigalaxy;
#[cfg(not(target_family = "unix"))]
mod amazon;
mod gog;
mod itch;
mod origin;
mod platform;
mod platforms_load;
mod uplay;
mod minigalaxy;
mod egs;
pub(crate) use platform::*;
pub(crate) use gog::get_gog_shortcuts_from_game_folders;