activitypub/build.rs
2024-04-09 19:55:07 +02:00

12 lines
222 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() {}