summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Binner <stephan.binner@basyskom.com>2017-04-20 09:27:43 +0200
committerSean Harmer <sean.harmer@kdab.com>2017-04-27 11:08:16 +0000
commitc5108cb5300a32ac3dd0c2c1e42dcf1d35c1ac2f (patch)
tree94198b6bcabdc656dc301ee1130ee72eef6d8b88
parenta6e9441c0fec1819b80cc69429de83d89680cf0a (diff)
Fix build for -no-feature-temporaryfile
Change-Id: I9e5bfc7636c10d0f0e39faf18b0b97bfb70f67d3 Reviewed-by: Kevin Ottens <kevin.ottens@kdab.com> Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
-rw-r--r--src/plugins/sceneparsers/sceneparsers.pro7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/plugins/sceneparsers/sceneparsers.pro b/src/plugins/sceneparsers/sceneparsers.pro
index befe08e41..bba802393 100644
--- a/src/plugins/sceneparsers/sceneparsers.pro
+++ b/src/plugins/sceneparsers/sceneparsers.pro
@@ -2,4 +2,9 @@ TEMPLATE = subdirs
# QNX is not supported, and Linux GCC 4.9 on ARM chokes on the assimp
# sources (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66964).
config_assimp|!cross_compile: SUBDIRS += assimp
-SUBDIRS += gltf gltfexport
+
+SUBDIRS += gltf
+
+qtConfig(temporaryfile) {
+ SUBDIRS += gltfexport
+}