lumina/build.rs
Chris Cochrun b32d35c385 adding a slide_obj in rust
This object is still unfinished, but it will later serve as our main
object to connect to for the slides that are shown on screen. All of
this needed some heavy tweaking and I still need to learn more about
rust, but the beginnings are there and it will be worth it to have the
safety and speed that rust provides
2023-03-21 10:34:54 -05:00

10 lines
250 B
Rust

use cxx_qt_build::CxxQtBuilder;
fn main() {
CxxQtBuilder::new()
.file("src/rust/service_thing.rs")
.file("src/rust/settings.rs")
.file("src/rust/file_helper.rs")
.file("src/rust/slide_obj.rs")
.build();
}