activitypub/build.rs

12 lines
222 B
Rust
Raw Normal View History

2024-01-26 21:01:43 +01:00
#[cfg(target_os = "windows")]
fn main() {
vcpkg::Config::new()
2024-04-09 19:55:07 +02:00
.emit_includes(true)
.copy_dlls(true)
.find_package("libpq")
.unwrap();
2024-01-26 21:01:43 +01:00
}
#[cfg(not(target_os = "windows"))]
2024-04-09 19:55:07 +02:00
fn main() {}