We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef0531a commit 2463ac0Copy full SHA for 2463ac0
crates/cxx-qt-build/src/lib.rs
@@ -4,6 +4,13 @@
4
// SPDX-FileContributor: Gerhard de Clercq <[email protected]>
5
//
6
// SPDX-License-Identifier: MIT OR Apache-2.0
7
+
8
+#![deny(missing_docs)]
9
10
+//! This crate provides a builder which parses given Rust source code to search
11
+//! for CXX-Qt or CXX macros and generate any resulting C++ code. It also builds
12
+//! the C++ code into a binary with any cxx-qt-lib code and Qt linked.
13
14
use convert_case::{Case, Casing};
15
use quote::ToTokens;
16
use std::{
0 commit comments