Private
Public Access
1
0

Adds kordophoned, basic dbus interface

This commit is contained in:
2025-02-11 23:15:24 -08:00
parent 16c202734c
commit fddc45c62a
9 changed files with 365 additions and 10 deletions

24
kordophoned/build.rs Normal file
View File

@@ -0,0 +1,24 @@
const KORDOPHONE_XML: &str = "include/net.buzzert.kordophonecd.Server.xml";
fn main() {
let out_dir = std::env::var("OUT_DIR").unwrap();
let out_path = std::path::Path::new(&out_dir).join("kordophone-server.rs");
let opts = dbus_codegen::GenOpts {
connectiontype: dbus_codegen::ConnectionType::Nonblock,
methodtype: None, // Set to None for crossroads
crossroads: true,
..Default::default()
};
let xml = std::fs::read_to_string(KORDOPHONE_XML)
.expect("Error reading server dbus interface");
let output = dbus_codegen::generate(&xml, &opts)
.expect("Error generating server dbus interface");
std::fs::write(out_path, output)
.expect("Error writing server dbus code");
println!("cargo:rerun-if-changed={}", KORDOPHONE_XML);
}