prrte-sys 0.1.0-rc.1

Low-level FFI bindings to PRRTE, developed for use by the Lamellar runtime.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]

use std::path::PathBuf;

// include!(concat!(env!("OUT_DIR"), "/bindings.rs"));



pub fn prterun_path() -> PathBuf {
    
    PathBuf::from(concat!(env!("OUT_DIR"), "/bin/prterun"))
}