adding rust to the project

This commit is contained in:
Chris Cochrun 2022-12-08 15:19:53 -06:00
parent 02c3e84cb6
commit 8a7d6da991
4 changed files with 86 additions and 0 deletions

5
src/rust/build.rs Normal file
View file

@ -0,0 +1,5 @@
use cxx_qt_build::CxxQtBuilder;
fn main() {
CxxQtBuilder::new().file("src/cxxqt_object.rs").build();
}