feat(build): Configure linking to libsystemd

This commit is contained in:
Vincent Ambo 2018-05-27 20:09:20 +02:00
parent 869d74723e
commit 1ed238b449

6
build.rs Normal file
View file

@ -0,0 +1,6 @@
extern crate pkg_config;
fn main() {
pkg_config::probe_library("libsystemd")
.expect("Could not probe libsystemd");
}