lib.rs (693B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this file, 3 * You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 use std::path::Path; 6 7 // Path::new is not const at the moment. This is a non-generic version 8 // of Path::new, similar to libstd's implementation of Path::new. 9 #[inline(always)] 10 const fn const_path(s: &'static str) -> &'static std::path::Path { 11 unsafe { &*(s as *const str as *const std::path::Path) } 12 } 13 14 pub const TOPOBJDIR: &Path = const_path(config::TOPOBJDIR); 15 16 pub const TOPSRCDIR: &Path = const_path(config::TOPSRCDIR); 17 18 pub mod config { 19 include!(env!("BUILDCONFIG_RS")); 20 }