aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorIvan Komissarov <abbapoh@gmail.com>2020-07-29 18:54:37 +0200
committerIvan Komissarov <ABBAPOH@gmail.com>2020-07-31 11:10:35 +0000
commited1536c6f882be505642cf1f2b191ef53d8dee31 (patch)
tree1c865bed2903a2500ca718b80780422021573496 /share
parent8ee19f3d8fcc83053e856ddf769b437d233b72d1 (diff)
doc: Document more cpp module properties
Fixes: QBS-1304 Change-Id: Ie7d2c4827119dbdc6c807c56912431fb3111f712 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'share')
-rw-r--r--share/qbs/modules/cpp/CppModule.qbs7
1 files changed, 4 insertions, 3 deletions
diff --git a/share/qbs/modules/cpp/CppModule.qbs b/share/qbs/modules/cpp/CppModule.qbs
index 173c3f3e5..b2897c30c 100644
--- a/share/qbs/modules/cpp/CppModule.qbs
+++ b/share/qbs/modules/cpp/CppModule.qbs
@@ -128,7 +128,7 @@ Module {
defaults will be used."
}
- property string minimumAndroidVersion
+ property string minimumAndroidVersion // not used, undocumented
PropertyOptions {
name: "minimumAndroidVersion"
description: "a version number in the format [major].[minor] indicating the earliest \
@@ -136,7 +136,7 @@ Module {
version which is then written to AndroidManifest.xml."
}
- property string maximumAndroidVersion
+ property string maximumAndroidVersion // not used, undocumented
PropertyOptions {
name: "maximumAndroidVersion"
description: "a version number in the format [major].[minor] indicating the latest \
@@ -384,13 +384,14 @@ Module {
property bool combineObjcSources: false
property bool combineObjcxxSources: false
+ // Those are set internally by different cpp module implementations
property stringList targetAssemblerFlags
property stringList targetDriverFlags
property stringList targetLinkerFlags
property bool _skipAllChecks: false // Internal
- property bool validateTargetTriple: true
+ property bool validateTargetTriple: true // undocumented
// TODO: The following four rules could use a convenience base item if rule properties
// were available in Artifact items and prepare scripts.