mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-26 19:41:37 +08:00
03f368c4f4
Use pkg-config to find it.
6 lines
106 B
Rust
6 lines
106 B
Rust
extern crate "pkg-config" as pkg_config;
|
|
|
|
fn main() {
|
|
pkg_config::find_library("sqlite3").unwrap();
|
|
}
|