diff options
Diffstat (limited to 'doc/html/build_system.html')
-rw-r--r-- | doc/html/build_system.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/build_system.html b/doc/html/build_system.html index 11016d4..b997c3c 100644 --- a/doc/html/build_system.html +++ b/doc/html/build_system.html @@ -56,18 +56,18 @@ care of the details of particular combinations of platform and compiler. It supports over 50 different platform/compiler combinations.</p> <p>The build system is implemented as a pure Python module called <tt class="xref docutils literal"><span class="pre">sipconfig</span></tt> that contains a number of classes and functions. Using this module you can -write bespoke configuration scripts (e.g. PyQt’s <tt class="docutils literal"><span class="pre">configure.py</span></tt>) or use it +write bespoke configuration scripts (e.g. PyTQt’s <tt class="docutils literal"><span class="pre">configure.py</span></tt>) or use it with other Python based build systems (e.g. <a class="reference external" href="http://www.python.org/sigs/distutils-sig/distutils.html">Distutils</a> and <a class="reference external" href="http://www.scons.org">SCons</a>).</p> <p>An important feature of SIP is the ability to generate bindings that are built on top of existing bindings. For example, both <a class="reference external" href="http://www.riverbankcomputing.com/software/pykde/">PyKDE</a> and -<a class="reference external" href="http://pyqwt.sourceforge.net/">PyQwt</a> are built on top of PyQt but all three -packages are maintained by different developers. To make this easier PyQt +<a class="reference external" href="http://pyqwt.sourceforge.net/">PyQwt</a> are built on top of PyTQt but all three +packages are maintained by different developers. To make this easier PyTQt includes its own configuration module, <tt class="docutils literal"><span class="pre">pyqtconfig</span></tt>, that contains additional classes intended to be used by the configuration scripts of bindings built on -top of PyQt. The SIP build system includes facilities that do a lot of the +top of PyTQt. The SIP build system includes facilities that do a lot of the work of creating these additional configuration modules.</p> <dl class="function"> <dt id="sipconfig.create_config_module"> @@ -551,12 +551,12 @@ and <tt class="docutils literal"><span class="pre">BMAKE</span></tt>.</dd></dl> <a title="sipconfig.Configuration" class="reference internal" href="#sipconfig.Configuration"><tt class="xref docutils literal"><span class="pre">Configuration</span></tt></a> class or a sub-class.</li> <li><em>console</em> – is set if the target is a console (rather than GUI) target. This only affects Windows and is ignored on other platforms.</li> -<li><em>qt</em> – is set if the target uses Qt. For Qt v4 a list of Qt libraries may -be specified and a simple non-zero value implies QtCore and QtGui.</li> +<li><em>qt</em> – is set if the target uses TQt. For TQt v4 a list of TQt libraries may +be specified and a simple non-zero value implies TQtCore and TQtGui.</li> <li><em>opengl</em> – is set if the target uses OpenGL.</li> <li><em>python</em> – is set if the target uses Python.h.</li> <li><em>threaded</em> – is set if the target requires thread support. It is set -automatically if the target uses Qt and Qt has thread support +automatically if the target uses TQt and TQt has thread support enabled.</li> <li><em>warnings</em> – is set if compiler warning messages should be enabled. The default of <tt class="xref docutils literal"><span class="pre">None</span></tt> means that warnings are enabled for SIP v4.x and |