7 lines
247 B
Rust
7 lines
247 B
Rust
use cxx_qt_build::{CxxQtBuilder, PluginType, QmlModule};
|
|
|
|
fn main() {
|
|
CxxQtBuilder::new_qml_module(QmlModule::new("NovaStats").plugin_type(PluginType::Dynamic))
|
|
.files(["src/system_stats.rs", "src/cpu_service.rs"])
|
|
.build();
|
|
}
|