summaryrefslogtreecommitdiffstats
path: root/src/sensors/doc/qtsensors-module-use.qdocinc
diff options
context:
space:
mode:
Diffstat (limited to 'src/sensors/doc/qtsensors-module-use.qdocinc')
-rw-r--r--src/sensors/doc/qtsensors-module-use.qdocinc15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/sensors/doc/qtsensors-module-use.qdocinc b/src/sensors/doc/qtsensors-module-use.qdocinc
new file mode 100644
index 00000000..761b6bbd
--- /dev/null
+++ b/src/sensors/doc/qtsensors-module-use.qdocinc
@@ -0,0 +1,15 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
+
+//! [cmakebuild]
+ \code
+ find_package(Qt6 REQUIRED COMPONENTS Sensors)
+ target_link_libraries(mytarget PRIVATE Qt6::Sensors)
+ \endcode
+//! [cmakebuild]
+
+//! [qmakebuild]
+ \code
+ QT += sensors
+ \endcode
+//! [qmakebuild]