fractal/src/config.rs.in

11 lines
467 B
Rust
Raw Normal View History

2023-04-29 12:34:04 +00:00
use crate::application::AppProfile;
2021-02-04 19:25:29 +00:00
pub const APP_ID: &str = @APP_ID@;
pub const GETTEXT_PACKAGE: &str = @GETTEXT_PACKAGE@;
pub const LOCALEDIR: &str = @LOCALEDIR@;
pub const PKGDATADIR: &str = @PKGDATADIR@;
2023-04-29 12:34:04 +00:00
pub const PROFILE: AppProfile = AppProfile::@PROFILE@;
2021-02-04 19:25:29 +00:00
pub const RESOURCES_FILE: &str = concat!(@PKGDATADIR@, "/resources.gresource");
pub const UI_RESOURCES_FILE: &str = concat!(@PKGDATADIR@, "/ui-resources.gresource");
2021-02-04 19:25:29 +00:00
pub const VERSION: &str = @VERSION@;