Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > 5ab010e37991249ab4adaa24d6e39c6e > files > 121

qt5-qtdoc-5.1.1-2.fc18.noarch.rpm

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- installation.qdoc -->
  <title>Installing Qt for Mac OS X | QtDoc 5.1</title>
  <link rel="stylesheet" type="text/css" href="style/offline.css" />
</head>
<body>
<div class="header" id="qtdocheader"></div>
<div class="content">
<div class="line">
<div class="content mainContent">
  <link rel="prev" href="installation.html" />
<p class="naviNextPrevious headerNavi">
<a class="prevPage" href="installation.html">Installation</a>
</p><p/>
<div class="toc">
<h3><a name="toc">Contents</a></h3>
<ul>
<li class="level1"><a href="#step-1-install-the-license-file-commercial-editions-only">Step 1: Install the License File (commercial editions only)</a></li>
<li class="level1"><a href="#step-2-build-the-qt-library">Step 2: Build the Qt Library</a></li>
<li class="level1"><a href="#step-3-set-the-environment-variables">Step 3: Set the Environment variables</a></li>
<li class="level1"><a href="#qt-demos-and-examples">Qt Demos and Examples</a></li>
</ul>
</div>
<h1 class="title">Installing Qt for Mac OS X</h1>
<span class="subtitle"></span>
<!-- $$$install-mac.html-description -->
<div class="descr"> <a name="details"></a>
<p>Qt for Mac OS X has some requirements that are given in more detail in the <a href="requirements-mac.html">Qt for Mac OS X Requirements</a> document.</p>
<p>The following instructions describe how to install Qt from the source package. A binary package is available and the <a href="qtinstaller.html">Qt Installation Program</a> page describes the installation in more detail.</p>
<p>For the binary package, simply double-click on the Qt.mpkg and follow the instructions to install Qt. You can later run the <tt>uninstall-qt.py</tt> script to uninstall the binary package. The script is located in /Developer/Tools and must be run as root.</p>
<p><b>Note: </b>Do not run the iPhone simulator while installing Qt. The <a href="http://openradar.appspot.com/7214991">iPhone simulator conflicts with the package installer</a>.</p><a name="step-1-install-the-license-file-commercial-editions-only"></a>
<h2>Step 1: Install the License File (commercial editions only)</h2>
<p>If you have the commercial edition of Qt, install your license file as <tt>$HOME/.qt-license</tt>.</p>
<p>For the open source version you do not need a license file.</p>
<p>Unpack the archive if you have not done so already. For example, if you have the <tt>qt-everywhere-opensource-src-5.1&#x2e;1&#x2e;tar.gz</tt> package, type the following commands at a command line prompt:</p>
<pre class="cpp">cd <span class="operator">/</span>tmp
gunzip qt<span class="operator">-</span>everywhere<span class="operator">-</span>opensource<span class="operator">-</span>src<span class="operator">-</span><span class="number">5.1.1.tar.gz</span>        <span class="preprocessor"># uncompress the archive</span>
tar xvf qt<span class="operator">-</span>everywhere<span class="operator">-</span>opensource<span class="operator">-</span>src<span class="operator">-</span><span class="number">5.1.1.tar</span>          <span class="preprocessor"># unpack it</span></pre>
<p>This creates the directory <tt>/tmp/qt-everywhere-opensource-src-5.1&#x2e;1</tt> containing the files from the archive.</p>
<a name="step-2-build-the-qt-library"></a>
<h2>Step 2: Build the Qt Library</h2>
<p>To configure the Qt library for your machine type, run the <tt>./configure</tt> script in the package directory.</p>
<p>By default, Qt is configured for installation in the <tt>/usr/local/Qt-5.1&#x2e;1</tt> directory, but this can be changed by using the <tt>-prefix</tt> option.</p>
<pre class="cpp">cd <span class="operator">/</span>tmp<span class="operator">/</span>qt<span class="operator">-</span>everywhere<span class="operator">-</span>opensource<span class="operator">-</span>src<span class="operator">-</span><span class="number">5.1.1</span>
<span class="operator">.</span><span class="operator">/</span>configure</pre>
<p>Type <tt>./configure -help</tt> to get a list of all available options.</p>
<p>Note that you will need to specify <tt>-universal</tt> if you want to build universal binaries, and also supply a path to the <tt>-sdk</tt> option if your development machine has a PowerPC CPU. By default, Qt is built as a framework, but you can built it as a set of dynamic libraries (dylibs) by specifying the <tt>-no-framework</tt> option.</p>
<p>Qt can also be configured to be built with debugging symbols. This process is described in detail in the <a href="debug.html">Debugging Techniques</a> document.</p>
<p>To create the library and compile all the examples, tools, and tutorials, type:</p>
<pre class="cpp">make</pre>
<p>If <tt>-prefix</tt> is outside the build directory, you need to install the library, examples, tools, and tutorials in the appropriate place. To do this, type:</p>
<pre class="cpp">sudo make <span class="operator">-</span>j1 install</pre>
<p>This command requires that you have administrator access on your machine.</p>
<p><b>Note: </b>There is a potential race condition when running make install with multiple jobs. It is best to only run one make job (-j1) for the install.</p><p>If you later need to reconfigure and rebuild Qt from the same location, ensure that all traces of the previous configuration are removed by entering the build directory and typing <tt>make confclean</tt> before running <tt>configure</tt> again.</p>
<a name="step-3-set-the-environment-variables"></a>
<h2>Step 3: Set the Environment variables</h2>
<p>In order to use Qt, some environment variables need to be extended.</p>
<pre class="cpp">PATH               <span class="operator">-</span> to locate qmake<span class="operator">,</span> moc <span class="keyword">and</span> other <span class="type">Qt</span> tools</pre>
<p>This is done like this:</p>
<p>In <tt>.profile</tt> (if your shell is bash), add the following lines:</p>
<pre class="cpp">PATH<span class="operator">=</span><span class="operator">/</span>usr<span class="operator">/</span>local<span class="operator">/</span><span class="type">Qt</span><span class="operator">-</span><span class="number">5.1.1</span><span class="operator">/</span>bin:$PATH
<span class="keyword">export</span> PATH</pre>
<p>In <tt>.login</tt> (in case your shell is csh or tcsh), add the following line:</p>
<pre class="cpp">setenv PATH <span class="operator">/</span>usr<span class="operator">/</span>local<span class="operator">/</span><span class="type">Qt</span><span class="operator">-</span><span class="number">5.1.1</span><span class="operator">/</span>bin:$PATH</pre>
<p>If you use a different shell, please modify your environment variables accordingly.</p>
<p><b>That's all. Qt is now installed.</b></p>
<a name="qt-demos-and-examples"></a>
<h2>Qt Demos and Examples</h2>
<p>If you are new to Qt, we suggest that you take a look at the examples to see Qt in action. Run the Qt Examples either by typing <tt>qtdemo</tt> on the command line or through the desktop's Start menu.</p>
<p>You might also want to try the following links:</p>
<ul>
<li>How to Learn Qt</li>
<li><a href="qtexamplesandtutorials.html">Qt Examples and Tutorials</a></li>
<li><a href="deployment.html">Deploying Qt Applications</a></li>
</ul>
<p>We hope you will enjoy using Qt. Good luck!</p>
</div>
<!-- @@@install-mac.html -->
<p class="naviNextPrevious footerNavi">
<a class="prevPage" href="installation.html">Installation</a>
</p>
</div>
</div>
</div>
<div class="footer">
    <p>
      <acronym title="Copyright">&copy;</acronym> 2013 Digia Plc and/or its
      subsidiaries. Documentation contributions included herein are the copyrights of
      their respective owners.</p>
    <br />
    <p>
      The documentation provided herein is licensed under the terms of the
      <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation
      License version 1.3</a> as published by the Free Software Foundation.</p>
    <p>
      Documentation sources may be obtained from <a href="http://www.qt-project.org">
      www.qt-project.org</a>.</p>
    <br />
    <p>
      Digia, Qt and their respective logos are trademarks of Digia Plc 
      in Finland and/or other countries worldwide. All other trademarks are property
      of their respective owners. <a title="Privacy Policy"
      href="http://en.gitorious.org/privacy_policy/">Privacy Policy</a></p>
</div>
</body>
</html>