2021-03-15 10:40:52 +00:00
|
|
|
use crate::config::ModuleConfig;
|
2020-07-09 19:40:33 +00:00
|
|
|
|
2021-03-31 15:31:55 +00:00
|
|
|
use serde::Serialize;
|
2020-07-09 19:40:33 +00:00
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
|
2021-03-31 15:31:55 +00:00
|
|
|
#[derive(Clone, ModuleConfig, Serialize)]
|
2020-07-09 19:40:33 +00:00
|
|
|
pub struct CMakeConfig<'a> {
|
|
|
|
pub format: &'a str,
|
2021-04-29 21:22:20 +00:00
|
|
|
pub version_format: &'a str,
|
2020-07-09 19:40:33 +00:00
|
|
|
pub symbol: &'a str,
|
|
|
|
pub style: &'a str,
|
|
|
|
pub disabled: bool,
|
2021-02-13 10:38:47 +00:00
|
|
|
pub detect_extensions: Vec<&'a str>,
|
|
|
|
pub detect_files: Vec<&'a str>,
|
|
|
|
pub detect_folders: Vec<&'a str>,
|
2020-07-09 19:40:33 +00:00
|
|
|
}
|
|
|
|
|
2021-03-15 10:40:52 +00:00
|
|
|
impl<'a> Default for CMakeConfig<'a> {
|
|
|
|
fn default() -> Self {
|
2020-07-09 19:40:33 +00:00
|
|
|
CMakeConfig {
|
2021-01-16 12:27:02 +00:00
|
|
|
format: "via [$symbol($version )]($style)",
|
2021-04-29 21:22:20 +00:00
|
|
|
version_format: "v${raw}",
|
2021-03-15 10:27:54 +00:00
|
|
|
symbol: "△ ",
|
2020-07-09 19:40:33 +00:00
|
|
|
style: "bold blue",
|
|
|
|
disabled: false,
|
2021-02-13 10:38:47 +00:00
|
|
|
detect_extensions: vec![],
|
|
|
|
detect_files: vec!["CMakeLists.txt", "CMakeCache.txt"],
|
|
|
|
detect_folders: vec![],
|
2020-07-09 19:40:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|