mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
12 lines
291 B
Rust
12 lines
291 B
Rust
fn main() {
|
|
::capnpc::CompilerCommand::new()
|
|
.file("../veilid-server/proto/veilid-client.capnp")
|
|
.src_prefix("../veilid-server/")
|
|
.run()
|
|
.expect("compiling schema");
|
|
#[cfg(unix)]
|
|
{
|
|
println!("cargo:rustc-link-lib=static=ncursesw");
|
|
}
|
|
}
|