<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Brandon W. King&#039;s Blog &#187; Qt</title>
	<atom:link href="http://www.brandonking.net/blog/tag/qt/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brandonking.net/blog</link>
	<description>Blogging about Python, Bioinformatics, Programming, System Administration, Cognitive Science, Philosophy and Life</description>
	<lastBuildDate>Wed, 09 Dec 2009 01:24:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Building 64-bit/32-bit Debug&amp;Release Universal Build of Qt 4.6.0 on Mac OS X 10.6 (Snow Leopard)</title>
		<link>http://www.brandonking.net/blog/2009/12/08/building-64-bit32-bit-debugrelease-universal-build-of-qt-4-6-0-on-mac-os-x-10-6-snow-leopard/</link>
		<comments>http://www.brandonking.net/blog/2009/12/08/building-64-bit32-bit-debugrelease-universal-build-of-qt-4-6-0-on-mac-os-x-10-6-snow-leopard/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 22:50:49 +0000</pubDate>
		<dc:creator>Brandon W. King</dc:creator>
				<category><![CDATA[Compiling Code]]></category>
		<category><![CDATA[Computers/IT]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Software Development/Engineering]]></category>
		<category><![CDATA[64-bit]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[Qt 4.6]]></category>
		<category><![CDATA[snow leopard]]></category>

		<guid isPermaLink="false">http://www.brandonking.net/blog/?p=96</guid>
		<description><![CDATA[Go away for a long time (many hours); watching a tea-pot boil many times over will be less painful than watching this process.]]></description>
			<content:encoded><![CDATA[<p>See <a href="http://www.brandonking.net/blog/2009/12/08/an-example-of-checking-out-a-git-tag-using-qt-4-6-0-as-an-example/">my directions on checking out Qt 4.6.0</a> from the git repository if you do not already have the source code.</p>
<p>Launch a Terminal and cd to the source directory.</p>
<p>Run configure w/ 64-bit &amp; 32-bit + debug &amp; release using cocoa and frameworks:</p>
<blockquote><p>$ ./configure -arch &#8220;x86 x86_64&#8243; -debug-and-release -opensource -framework -cocoa</p></blockquote>
<p>Run make:</p>
<blockquote><p>make -j &lt;number_of_processor_cores&gt;</p>
<p>OR</p>
<p>make</p></blockquote>
<p>Go away for a long time (many hours); watching a tea-pot boil many times over will be less painful than watching this process.</p>
<p>Install:</p>
<blockquote><p>sudo make install</p></blockquote>
<p>You should find the installed build in /usr/local/Trolltech/Qt-4.6.0/. I hope this is helpful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brandonking.net/blog/2009/12/08/building-64-bit32-bit-debugrelease-universal-build-of-qt-4-6-0-on-mac-os-x-10-6-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An example of checking out a git tag using Qt 4.6.0 as an example.</title>
		<link>http://www.brandonking.net/blog/2009/12/08/an-example-of-checking-out-a-git-tag-using-qt-4-6-0-as-an-example/</link>
		<comments>http://www.brandonking.net/blog/2009/12/08/an-example-of-checking-out-a-git-tag-using-qt-4-6-0-as-an-example/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 22:23:08 +0000</pubDate>
		<dc:creator>Brandon W. King</dc:creator>
				<category><![CDATA[Revision Control]]></category>
		<category><![CDATA[Software Development/Engineering]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[tag]]></category>

		<guid isPermaLink="false">http://www.brandonking.net/blog/?p=88</guid>
		<description><![CDATA[Clone the Qt repository:
$ git clone git://gitorious.org/qt/qt.git
Show available tags:
$ git tag -l
output:
v4.5.1
v4.5.2
v4.5.3
v4.6.0
v4.6.0-beta1
v4.6.0-rc1
v4.6.0-tp1
Checkout v4.6.0:
$ git checkout v4.6.0
OR checkout v4.6.0 as a NEW branch:
$ git checkout -b v4.6.0-mybranch v4.6.0
]]></description>
			<content:encoded><![CDATA[<p>Clone the Qt repository:</p>
<blockquote><p>$ git clone git://gitorious.org/qt/qt.git</p></blockquote>
<p>Show available tags:</p>
<blockquote><p>$ git tag -l</p>
<p>output:<br />
v4.5.1<br />
v4.5.2<br />
v4.5.3<br />
v4.6.0<br />
v4.6.0-beta1<br />
v4.6.0-rc1<br />
v4.6.0-tp1</p></blockquote>
<p>Checkout v4.6.0:</p>
<blockquote><p>$ git checkout v4.6.0</p></blockquote>
<p>OR checkout v4.6.0 as a NEW branch:</p>
<blockquote><p>$ git checkout -b v4.6.0-mybranch v4.6.0</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.brandonking.net/blog/2009/12/08/an-example-of-checking-out-a-git-tag-using-qt-4-6-0-as-an-example/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
