mirror of
https://github.com/djibux/BoilR.git
synced 2026-09-01 05:53:41 +02:00
* replace target_os = "linux" with target_family = "unix" * check correct dir for macos steam files
11 lines
274 B
Rust
11 lines
274 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone)]
|
|
pub struct GogSettings {
|
|
pub enabled: bool,
|
|
pub location: Option<String>,
|
|
pub wine_c_drive: Option<String>,
|
|
#[cfg(target_family = "unix")]
|
|
pub create_symlinks: bool,
|
|
}
|