rusqlite/build.rs
2015-03-26 15:49:13 -04:00

6 lines
90 B
Rust

extern crate pkg_config;
fn main() {
pkg_config::find_library("sqlite3").unwrap();
}