1
0
Fork 0
forked from wry/wry

autocommit 2022-04-04 23:09:39 CEST

This commit is contained in:
Julian Orth 2022-04-04 23:09:39 +02:00
parent e897d271af
commit 5f79aab15f
21 changed files with 870 additions and 731 deletions

View file

@ -18,6 +18,7 @@ use std::io::BufWriter;
use std::path::PathBuf;
use std::{env, io};
mod egl;
mod enums;
mod tokens;
mod wire;
@ -41,6 +42,7 @@ fn main() -> anyhow::Result<()> {
wire_dbus::main()?;
wire_xcon::main()?;
enums::main()?;
egl::main()?;
println!("cargo:rerun-if-changed=build/build.rs");
Ok(())