summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorJean-Michaël Celerier <jeanmichael.celerier@gmail.com>2020-06-07 16:55:18 +0200
committerJean-Michaël Celerier <jeanmichael.celerier@gmail.com>2020-06-07 19:30:19 +0200
commit96704a96fb1dc91e3c02eba632fc76056ca13f93 (patch)
tree914162662d93cf7971f31c1d59a9b8101bcec85c /examples
parentb01f9e93f4c41ab2444a4baf1a55365bf468d17a (diff)
cmake: disable examples on msvc until the big-resources issue is solved
Change-Id: I250de427ffca49d2736c1f01046733df5fb25d6e Reviewed-by: Mike Krus <mike.krus@kdab.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/CMakeLists.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
index a1d024c06..7c7190342 100644
--- a/examples/CMakeLists.txt
+++ b/examples/CMakeLists.txt
@@ -1,5 +1,15 @@
# Generated from examples.pro.
+#special case begin
+# Examples are disable for now on MSVC - big_resources does not seem to
+# have been translated into CMake automtically yet, and trying to replace it
+# manually with qt6_add_big_resources fails as of june 2020.
+# Disable that temporarily to be able to test on Win32
+if(MSVC)
+ return()
+endif()
+
+#special case end
qt_examples_build_begin()
if(QT_FEATURE_qt3d_extras)