
These are trying to get more code written in Rust rather than c++. Not there yet, but I need to sync these to another machine.
11 lines
291 B
Rust
11 lines
291 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")
|
|
.file("src/rust/slide_model.rs")
|
|
.build();
|
|
}
|