mirror of
https://github.com/versia-pub/activitypub.git
synced 2025-12-06 14:48:19 +01:00
12 lines
222 B
Rust
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() {}
|