pub fn build() -> Result<()>Expand description
Build the SDSL interface backend.
This function should be executed in the project’s build script. It analyses the project’s code base and builds a suitable SDSL interface backend.
§Example
ⓘ
// build.rs
fn main() {
match sdsl::build() {
Ok(_) => {}
Err(e) => panic!("Error: {}", e),
};
}A working example can be found here.