sharing/env.rs
1/*
2 * Authors: Jorge.A Duran & Mario Gónzalez
3 * Company: pispas Technologies SL
4 * Date: April 23, 2023
5 * Description: envs definition.
6 */
7#[cfg(target_os = "windows")]
8pub mod env {
9 pub const PATH_SEPARATOR: &str = ";";
10 pub const PATH_ENV: &str = "Path";
11 pub const PYTHON_PATH_ENV: &str = "PYTHONPATH";
12}
13
14#[cfg(not(target_os = "windows"))]
15pub mod env {
16 pub const PATH_SEPARATOR: &str = ":";
17 pub const PATH_ENV: &str = "PATH";
18}
19
20pub const LD_LIBRARY_PATH_ENV: &str = "LD_LIBRARY_PATH";
21
22pub use env::*;