aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/cpp/GenericGCC.qbs
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2013-11-14 11:32:04 +0100
committerChristian Kandeler <christian.kandeler@digia.com>2013-11-14 13:13:42 +0100
commit154b78e01ad4fdec9c68ca84b9ac0afd8d5a22e8 (patch)
tree4fb895040821adcd930af9b0a089627e765f9d8d /share/qbs/modules/cpp/GenericGCC.qbs
parent8c0f155a98f0cee77422577a06329d8b7f32ce1b (diff)
fix deprecation warnings in GCC cpp module
Use FileTagger.patterns instead of FileTagger.pattern. Change-Id: Ib02d9ef029588dc20337459f0aa514b5dfc6dd90 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'share/qbs/modules/cpp/GenericGCC.qbs')
-rw-r--r--share/qbs/modules/cpp/GenericGCC.qbs6
1 files changed, 3 insertions, 3 deletions
diff --git a/share/qbs/modules/cpp/GenericGCC.qbs b/share/qbs/modules/cpp/GenericGCC.qbs
index 35821fdeb..023708e3a 100644
--- a/share/qbs/modules/cpp/GenericGCC.qbs
+++ b/share/qbs/modules/cpp/GenericGCC.qbs
@@ -335,17 +335,17 @@ CppModule {
}
FileTagger {
- pattern: "*.s"
+ patterns: "*.s"
fileTags: ["asm"]
}
FileTagger {
- pattern: "*.S"
+ patterns: "*.S"
fileTags: ["asm_cpp"]
}
FileTagger {
- pattern: "*.sx"
+ patterns: "*.sx"
fileTags: ["asm_cpp"]
}
}