mlua/build.rs

9 lines
143 B
Rust

extern crate pkg_config;
fn main() {
pkg_config::Config::new()
.atleast_version("5.3")
.probe("lua")
.unwrap();
}