You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
613 B
21 lines
613 B
extern crate pkg_config;
|
|
extern crate cc;
|
|
|
|
use std::env;
|
|
use std::path::PathBuf;
|
|
|
|
fn main() {
|
|
let mut lmdb: PathBuf = PathBuf::from(&env::var("CARGO_MANIFEST_DIR").unwrap());
|
|
lmdb.push("lmdb");
|
|
lmdb.push("libraries");
|
|
lmdb.push("liblmdb");
|
|
|
|
if !pkg_config::find_library("liblmdb").is_ok() {
|
|
cc::Build::new()
|
|
.file(lmdb.join("mdb.c"))
|
|
.file(lmdb.join("midl.c"))
|
|
// https://github.com/LMDB/lmdb/blob/LMDB_0.9.21/libraries/liblmdb/Makefile#L25
|
|
.opt_level(2)
|
|
.compile("liblmdb.a")
|
|
}
|
|
}
|
|
|