<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Qt on saoe: The Nifty Oddity</title>
    <link>https://www.saoe.net/tags/qt/</link>
    <description>Recent content in Qt on saoe: The Nifty Oddity</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <copyright>© 2013-2024 Sascha Offe</copyright>
    <lastBuildDate>Tue, 10 Jun 2025 21:20:33 +0200</lastBuildDate>
    <atom:link href="https://www.saoe.net/tags/qt/feed.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Building Qt 6 on Windows with Visual Studio</title>
      <link>https://www.saoe.net/blog/building-qt-6-on-windows-with-visual-studio/</link>
      <pubDate>Sun, 09 May 2021 19:24:52 +0200</pubDate>
      <guid>https://www.saoe.net/blog/building-qt-6-on-windows-with-visual-studio/</guid>
      <description>&lt;p&gt;Time for another short guidance on how to build your own copy of the &lt;a href=&#34;https://www.qt.io/product/framework&#34; target=&#34;_blank&#34;&gt;&lt;strong&gt;Qt framework&lt;/strong&gt;&lt;/a&gt; from source.&lt;/p&gt;</description>
    </item>
    <item>
      <title>MOC error message when building a small single file Qt program</title>
      <link>https://www.saoe.net/blog/moc-error-message-when-building-a-small-single-file-qt-program/</link>
      <pubDate>Thu, 14 Sep 2017 21:56:59 +0000</pubDate>
      <guid>https://www.saoe.net/blog/moc-error-message-when-building-a-small-single-file-qt-program/</guid>
      <description>&lt;p&gt;Just a reminder for myself, because I will certainly stumble over it again in the future:&lt;/p&gt;</description>
    </item>
    <item>
      <title>No QtTools (lupdate/linguist/lrelease) when built as shared libraries</title>
      <link>https://www.saoe.net/blog/no-qttools-lupdatelinguistlrelease-when-built-as-shared-libraries/</link>
      <pubDate>Tue, 12 May 2015 22:44:17 +0000</pubDate>
      <guid>https://www.saoe.net/blog/no-qttools-lupdatelinguistlrelease-when-built-as-shared-libraries/</guid>
      <description>&lt;p&gt;So I&amp;rsquo;ve &lt;a href=&#34;https://www.saoe.net/blog/686/&#34; title=&#34;Building the Qt framework on Windows with Visual Studio&#34;&gt;built Qt from source&lt;/a&gt;&#xA;and used it successfully in the last year or so.&lt;br&gt;&#xA;Some time ago I turned my attention to multilanguage support and learned about Qt&amp;rsquo;s tools: &lt;em&gt;linguist.exe&lt;/em&gt;, &lt;em&gt;lupdate.exe&lt;/em&gt; and &lt;em&gt;lrelease.exe&lt;/em&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Building Qt for static linking</title>
      <link>https://www.saoe.net/blog/building-qt-for-static-linking/</link>
      <pubDate>Tue, 31 Mar 2015 02:38:17 +0000</pubDate>
      <guid>https://www.saoe.net/blog/building-qt-for-static-linking/</guid>
      <description>&lt;p&gt;One of the drawbacks of using such a comprehensive framework as Qt is the massively increased size of you program.&#xA;When my pet project &lt;em&gt;&lt;a href=&#34;https://www.saoe.net/software/randfill/&#34;&gt;RandFill&lt;/a&gt;&lt;/em&gt; was only using the plain Win32-API, it was a single executable file of a couple of hundred kilobytes.&lt;/p&gt;&#xA;&lt;p&gt;Now, using dynamically linked Qt, the whole package (with DLLs, MSVC redistributables, etc.) is bigger than 20 megabytes as a 64-bit build!&lt;/p&gt;</description>
    </item>
    <item>
      <title>Size comparison: RandFill 1.1.0 vs. 1.2.x-devel</title>
      <link>https://www.saoe.net/blog/size-comparison-randfill-1-1-0-vs-1-2-x-devel/</link>
      <pubDate>Wed, 02 Jul 2014 01:37:33 +0000</pubDate>
      <guid>https://www.saoe.net/blog/size-comparison-randfill-1-1-0-vs-1-2-x-devel/</guid>
      <description>&lt;p&gt;I&amp;rsquo;m currently migrating &lt;a href=&#34;https://www.saoe.net/software/randfill/&#34;&gt;RandFill&lt;/a&gt; from plain Win32 code to a mix of Win32 and Qt 5 code (mainly the GUI parts, at the moment);&#xA;and the size comparison between these two versions is sobering.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Journal #3</title>
      <link>https://www.saoe.net/blog/journal-3/</link>
      <pubDate>Sun, 15 Jun 2014 20:40:05 +0000</pubDate>
      <guid>https://www.saoe.net/blog/journal-3/</guid>
      <description>&lt;p&gt;Konnichiwa, time for another status report.&lt;/p&gt;</description>
    </item>
    <item>
      <title>CMake, Visual Studio and Qt 5 with MOC...</title>
      <link>https://www.saoe.net/blog/cmake-visual-studio-and-qt-5-with-moc/</link>
      <pubDate>Sun, 15 Jun 2014 14:22:12 +0000</pubDate>
      <guid>https://www.saoe.net/blog/cmake-visual-studio-and-qt-5-with-moc/</guid>
      <description>&lt;p&gt;After &lt;a href=&#34;https://www.saoe.net/blog/686/&#34;&gt;building a 64-bit version of Qt with/for Microsoft Visual Studio&lt;/a&gt;,&#xA;building a &lt;a href=&#34;https://www.saoe.net/blog/715/&#34;&gt;simple Qt test program&lt;/a&gt; and doing&#xA;&lt;a href=&#34;https://www.saoe.net/blog/778/&#34;&gt;first steps with the CMake build system&lt;/a&gt;, the next hurdle appeared&#xA;on the horizon in the form of support for Qt and its Q_OBJECT features (I am currently fighting more&#xA;with the changes I made to my build environment than improving the actual program code&amp;hellip;).&lt;/p&gt;</description>
    </item>
    <item>
      <title>Building a simple Qt application on Windows with Visual Studio</title>
      <link>https://www.saoe.net/blog/building-a-simple-qt-application-on-windows-with-visual-studio/</link>
      <pubDate>Sat, 12 Apr 2014 17:59:06 +0000</pubDate>
      <guid>https://www.saoe.net/blog/building-a-simple-qt-application-on-windows-with-visual-studio/</guid>
      <description>&lt;p&gt;After &lt;a href=&#34;https://www.saoe.net/blog/building-qt-5-2-1-on-windows-7-with-visual-studio-2010/&#34; title=&#34;Building Qt on Windows with Visual Studio&#34;&gt;preparing the Qt framework&lt;/a&gt;,&#xA;I needed to check if everything works; therefore I built a very simple Qt (5.2.1) application,&#xA;the GUI-equivalent of a &amp;ldquo;Hello-World&amp;rdquo; program.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Building Qt 5 on Windows with Visual Studio</title>
      <link>https://www.saoe.net/blog/building-qt-5-on-windows-with-visual-studio/</link>
      <pubDate>Sat, 12 Apr 2014 00:00:00 +0000</pubDate>
      <guid>https://www.saoe.net/blog/building-qt-5-on-windows-with-visual-studio/</guid>
      <description>&lt;p&gt;Short guides on how to build your own copy of the &lt;strong&gt;&lt;a href=&#34;https://doc.qt.io/archives/&#34; target=&#34;_blank&#34;&gt;Qt 5&lt;/a&gt;&lt;/strong&gt; framework from source.&lt;/p&gt;&#xA;&lt;p&gt;These were originally separate blog posts, but since they are now pretty outdated (since they are for old versions of Qt, Windows and Visual Studio),&#xA;I combined them here on a single page, for archival purposes (with many dead links&amp;hellip;), and edited them a bit.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Journal #2</title>
      <link>https://www.saoe.net/blog/journal-2/</link>
      <pubDate>Mon, 07 Apr 2014 21:40:39 +0000</pubDate>
      <guid>https://www.saoe.net/blog/journal-2/</guid>
      <description>&lt;p&gt;Konnichiwa again, picking up the loose threads from the &lt;a href=&#34;https://www.saoe.net/blog/340/&#34; title=&#34;DevLog #1&#34;&gt;last instance&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Journal #1</title>
      <link>https://www.saoe.net/blog/journal-1/</link>
      <pubDate>Sun, 28 Jul 2013 17:18:29 +0000</pubDate>
      <guid>https://www.saoe.net/blog/journal-1/</guid>
      <description>&lt;p&gt;Konnichiwa!&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
