activitypub/build.rs

11 lines
225 B
Rust
Raw Normal View History

2024-01-26 21:01:43 +01:00
#[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() {
}