<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Build Qt 6.11, &quot;skip&quot; ignored (not working)]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">I tried to build Qt 6.11 like I did for all previous versions of Qt 6, and it seems that "skip" argument is ignored. I tried "-skip qtwebengine -skip qtdoc" or "-skip qtwebengine,qtdoc", but "config,summary" file confirms that these modules are not ignored and will be part of the build ("WebEngine .............................. yes"). I noticed that <a href="http://config.opt.in" target="_blank" rel="noopener noreferrer nofollow ugc">config.opt.in</a> file doesn't inlcudes the "skip" argument whereas it did in previous versions.</p>
<p dir="auto">Is anyone else having the same issue?<br />
Best regards,<br />
Jonathan</p>
]]></description><link>https://forum.qt.io/topic/164486/build-qt-6.11-skip-ignored-not-working</link><generator>RSS for Node</generator><lastBuildDate>Sun, 26 Apr 2026 09:03:19 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/164486.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 26 Mar 2026 07:59:44 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Build Qt 6.11, &quot;skip&quot; ignored (not working) on Wed, 22 Apr 2026 02:30:58 GMT]]></title><description><![CDATA[<p dir="auto">To wrap things up, this is a bug which is fixed for Qt 6.11.1: <a href="https://qt-project.atlassian.net/browse/QTBUG-140359" target="_blank" rel="noopener noreferrer nofollow ugc">https://qt-project.atlassian.net/browse/QTBUG-140359</a></p>
]]></description><link>https://forum.qt.io/post/837918</link><guid isPermaLink="true">https://forum.qt.io/post/837918</guid><dc:creator><![CDATA[JKSH]]></dc:creator><pubDate>Wed, 22 Apr 2026 02:30:58 GMT</pubDate></item><item><title><![CDATA[Reply to Build Qt 6.11, &quot;skip&quot; ignored (not working) on Tue, 14 Apr 2026 13:31:02 GMT]]></title><description><![CDATA[<p dir="auto">Thank you all for your help.</p>
<p dir="auto">I've changed my approach and now use "-submodules" to include only the modules I need, without having to worry about excluding everything I don't need. I think this will also make it easier to maintain when new Qt releases.</p>
<p dir="auto">Best regards</p>
]]></description><link>https://forum.qt.io/post/837731</link><guid isPermaLink="true">https://forum.qt.io/post/837731</guid><dc:creator><![CDATA[maisoui]]></dc:creator><pubDate>Tue, 14 Apr 2026 13:31:02 GMT</pubDate></item><item><title><![CDATA[Reply to Build Qt 6.11, &quot;skip&quot; ignored (not working) on Tue, 14 Apr 2026 07:59:57 GMT]]></title><description><![CDATA[<p dir="auto">@<a href="https://slopeonline.online/" target="_blank" rel="noopener noreferrer nofollow ugc">slope</a> Instead of relying on -skip, explicitly disable modules using CMake flags, for example:</p>
<p dir="auto">-DQT_BUILD_WEBENGINE=OFF<br />
-DQT_BUILD_DOCS=OFF</p>
<p dir="auto">(module names can vary slightly, so it’s worth checking the specific option names in the module’s CMakeLists or documentation)</p>
]]></description><link>https://forum.qt.io/post/837716</link><guid isPermaLink="true">https://forum.qt.io/post/837716</guid><dc:creator><![CDATA[jimholland]]></dc:creator><pubDate>Tue, 14 Apr 2026 07:59:57 GMT</pubDate></item><item><title><![CDATA[Reply to Build Qt 6.11, &quot;skip&quot; ignored (not working) on Mon, 13 Apr 2026 13:49:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/maisoui">@<bdi>maisoui</bdi></a> To get you going, you could try to ignore the <code>-skip</code> thingy, and use CMake variables instead, like:</p>
<pre><code>configure -debug-and-release -opensource -confirm-license -opengl desktop -sql-mysql -no-dbus -no-icu -no-fontconfig -nomake examples -nomake tests -optimize-size -shared ... -- -DBUILD_qt3d=OFF -DBUILD_qt5compat=OFF -DBUILD_qtcoap=OFF -DBUILD_qtconnectivity=OFF -DBUILD_qtdatavis3d=OFF -DBUILD_qtdeclarative=OFF -DBUILD_qtdoc=OFF -DBUILD_qtgrpc=OFF -DBUILD_qtlocation=OFF -DBUILD_qtlottie=OFF -DBUILD_qtmqtt=OFF -DBUILD_qtopcua=OFF -DBUILD_qtquick3d=OFF -DBUILD_qtquick3dphysics=OFF -DBUILD_qtquickeffectmaker=OFF -DBUILD_qtquicktimeline=OFF -DBUILD_qtremoteobjects=OFF -DBUILD_qtscxml=OFF -DBUILD_qtsensors=OFF -DBUILD_qtserialbus=OFF -DBUILD_qtserialport=OFF -DBUILD_qtshadertools=OFF -DBUILD_qtspeech=OFF -DBUILD_qtvirtualkeyboard=OFF -DBUILD_qtwayland=OFF -DBUILD_qtwebengine=OFF -DBUILD_qtwebview=OFF
</code></pre>
]]></description><link>https://forum.qt.io/post/837692</link><guid isPermaLink="true">https://forum.qt.io/post/837692</guid><dc:creator><![CDATA[kodarn]]></dc:creator><pubDate>Mon, 13 Apr 2026 13:49:52 GMT</pubDate></item><item><title><![CDATA[Reply to Build Qt 6.11, &quot;skip&quot; ignored (not working) on Mon, 13 Apr 2026 08:06:17 GMT]]></title><description><![CDATA[<p dir="auto">Hi,<br />
Thank you for your answer. I read the documentation multiple times and tried  a lot of calls to configure with different options, but modules designed by "<strong>skip</strong>" are never ignored and are part of build (according to config.summary).</p>
<p dir="auto">Here is a sample of my call to configure:</p>
<pre><code>-debug-and-release -opensource -confirm-license -opengl desktop -sql-mysql -no-dbus -no-icu -no-fontconfig -nomake examples -nomake tests -skip qt3d,qt5compat,qtcoap,qtconnectivity,qtdatavis3d,qtdeclarative,qtdoc,qtgrpc,qtlocation,qtlottie,qtmqtt,qtopcua,qtquick3d,qtquick3dphysics,qtquickeffectmaker,qtquicktimeline,qtremoteobjects,qtscxml,qtsensors,qtserialbus,qtserialport,qtshadertools,qtspeech,qtvirtualkeyboard,qtwayland,qtwebengine,qtwebview -optimize-size -shared ...
</code></pre>
<p dir="auto">Any suggestions are welcomed.</p>
]]></description><link>https://forum.qt.io/post/837688</link><guid isPermaLink="true">https://forum.qt.io/post/837688</guid><dc:creator><![CDATA[maisoui]]></dc:creator><pubDate>Mon, 13 Apr 2026 08:06:17 GMT</pubDate></item><item><title><![CDATA[Reply to Build Qt 6.11, &quot;skip&quot; ignored (not working) on Fri, 27 Mar 2026 19:56:49 GMT]]></title><description><![CDATA[<p dir="auto">The exact configure call would be good so people can try and reproduce your issue in the same context.</p>
]]></description><link>https://forum.qt.io/post/837375</link><guid isPermaLink="true">https://forum.qt.io/post/837375</guid><dc:creator><![CDATA[SGaist]]></dc:creator><pubDate>Fri, 27 Mar 2026 19:56:49 GMT</pubDate></item><item><title><![CDATA[Reply to Build Qt 6.11, &quot;skip&quot; ignored (not working) on Fri, 27 Mar 2026 14:51:17 GMT]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">I'm not sure to understand your question. Here's my steps :</p>
<ul>
<li>call vcvarsall.bat for Visual Studio 2026</li>
<li>set a couple of variables (like PATH)</li>
<li>call configure.bat with arguments</li>
<li>cmake --build . --parallel</li>
<li>cmake --install . --config Release</li>
</ul>
]]></description><link>https://forum.qt.io/post/837370</link><guid isPermaLink="true">https://forum.qt.io/post/837370</guid><dc:creator><![CDATA[maisoui]]></dc:creator><pubDate>Fri, 27 Mar 2026 14:51:17 GMT</pubDate></item><item><title><![CDATA[Reply to Build Qt 6.11, &quot;skip&quot; ignored (not working) on Thu, 26 Mar 2026 19:41:36 GMT]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">Can you show the exact steps you are taking to build Qt ?</p>
]]></description><link>https://forum.qt.io/post/837348</link><guid isPermaLink="true">https://forum.qt.io/post/837348</guid><dc:creator><![CDATA[SGaist]]></dc:creator><pubDate>Thu, 26 Mar 2026 19:41:36 GMT</pubDate></item></channel></rss>