rust/hgcli/build.rs
changeset 44638 af739894a4c1
child 44729 26ce8e751503
equal deleted inserted replaced
44637:02f66b23cba3 44638:af739894a4c1
       
     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
       
     3 // file, You can obtain one at https://mozilla.org/MPL/2.0/.
       
     4 
       
     5 /*! Build script to integrate PyOxidizer. */
       
     6 
       
     7 fn main() {
       
     8     if let Ok(config_rs) = std::env::var("DEP_PYTHONXY_DEFAULT_PYTHON_CONFIG_RS") {
       
     9         println!(
       
    10             "cargo:rustc-env=PYOXIDIZER_DEFAULT_PYTHON_CONFIG_RS={}",
       
    11             config_rs
       
    12         );
       
    13     } else {
       
    14         panic!("unable to find build artifacts generated by pyembed crate");
       
    15     }
       
    16 }