You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// This allows for using [rcc](https://doc.qt.io/qt-6/resources.html)
615
+
pubfnrcc(&self) -> QtToolRcc{
616
+
QtToolRcc::new(self.qt_installation.as_ref())
617
+
}
618
+
612
619
/// Run [rcc](https://doc.qt.io/qt-6/resources.html) on a .qrc file and save the output into [cargo's OUT_DIR](https://doc.rust-lang.org/cargo/reference/environment-variables.html).
613
620
/// The path to the generated C++ file is returned, which can then be passed to [cc::Build::files](https://docs.rs/cc/latest/cc/struct.Build.html#method.file).
614
621
/// This function also returns a String that contains the name of the resource initializer
615
622
/// function.
616
623
/// The build system must ensure that if the .cpp file is built into a static library, either
617
624
/// the `+whole-archive` flag is used, or the initializer function is called by the
/// Run [rcc](https://doc.qt.io/qt-6/resources.html) on a .qrc file and save the output into [cargo's OUT_DIR](https://doc.rust-lang.org/cargo/reference/environment-variables.html).
36
+
/// The path to the generated C++ file is returned, which can then be passed to [cc::Build::files](https://docs.rs/cc/latest/cc/struct.Build.html#method.file).
37
+
/// This function also returns a String that contains the name of the resource initializer
38
+
/// function.
39
+
/// The build system must ensure that if the .cpp file is built into a static library, either
40
+
/// the `+whole-archive` flag is used, or the initializer function is called by the
0 commit comments