activitypub/build.rs
2024-01-26 12:01:43 -08:00

11 lines
225 B
Rust

#[cfg(target_os = "windows")]
fn main() {
vcpkg::Config::new()
.emit_includes(true)
.copy_dlls(true)
.find_package("libpq").unwrap();
}
#[cfg(not(target_os = "windows"))]
fn main() {
}