
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
10 lines
250 B
Rust
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();
|
|
}
|