Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
refnum committed Aug 7, 2010
0 parents commit 4cc51fd
Show file tree
Hide file tree
Showing 22 changed files with 1,534 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.DS_Store
*.mode2v3
*.pbxuser
*.obj
*.ncb
*.suo
*.user
*.idb
*.pdb

Binary file added Documentation/img/vs_build.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Documentation/img/vs_rules.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Documentation/img/xcode_env.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Documentation/img/xcode_rule.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Documentation/img/xcode_target.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
115 changes: 115 additions & 0 deletions Documentation/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html>
<head>
<title>refNum &rsaquo; Quilt</title>
<!--HEAD_BEGIN-->
<meta http-equiv="Content-Type" content="text/html; charset=UTF8">





<script type="text/javascript" src="src/js/refnum.js"></script>

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script type="text/javascript">_uacct = "UA-1732444-2";urchinTracker();</script>

<link type="text/css" href="src/css/refnum.css" rel=stylesheet>
<!--HEAD_END-->
</head>
<body>

<div id="content">
<!--#include virtual="/src/inc/nav.inc" -->
<script language="javascript">navSelect("dev")</script>

<a href="index.html">
<div id="page_strap_frame" style="background:url('src/img/page_strap_quilt.png');">
<div id="page_strap_content" style="background:url('src/img/page_strap_quilt.jpg'); background-repeat: no-repeat; background-position: 22px 16px;"></div></div></a>
<div id="page_body">
<div id="page_content">



<table>
<tr>
<td valign=top>
<ul id="menu">
<li class="subtitle">Quilt</li>
<li><a href="index.html">Home</a></li>
<li><a href="licence.html">Licence</a></li>
<li><a href="version.html">Version History</a></li>
<li class="subtitle">Using Quilt</li>
<li><a href="xcode.html">Using Xcode</a></li>
<li><a href="visualstudio.html">Using Visual Studio</a></li>
</ul>
</td>
<td valign=top>



<h1>Quilt</h1>
<p>
Quilt integrates Qt's meta-compilers into native Xcode and Visual Studio projects,
allowing automatic pre-processing without using <tt>qmake</tt>.
</p>

<p>
Although <tt>qmake</tt> can generate simple Xcode/Visual Studio project files, it does not
support new IDE features such as external <tt>.xcconfig</tt> or <tt>.vsprops</tt> files.
</p>

<p>
Quilt supports both <a href="xcode.html">Xcode</a> for Mac OS X, and
<a href="visualstudio.html">Visual Studio</a> for Microsoft Windows.
</p>



<h2>Usage</h2>
<p>
Quilt is normally invoked by a pre-build step in the development environment, and a
build rule during the actual build.
</p>

<p>
During the pre-build phase Quilt scans your source tree for files that contain Q_OBJECT
macros. It then generates a single <tt>.moc</tt> file, which identifies the source files
that require pre-processing.
</p>

<p>
During the actual build Quilt is invoked to process any Qt files (.moc, .qrc, or .ui)
in the project. It invokes the appropriate Qt meta-compiler for each file, and adds the
derived source to the build.
</p>

<p>
Once Quilt has been attached to your project, the identification and compilation of Qt
source is automatic.
</p>





</td>
</tr>
</table>



</div>
</div>
<div id="page_footer"></div>
</div>



<!--FOOTER_BEGIN-->
<div id="footer">
Copyright &copy; 2006-2010 <a href="http://www.refnum.com/">refNum Software</a>
</div>
<!--FOOTER_END-->
</body>
</html>
120 changes: 120 additions & 0 deletions Documentation/licence.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html>
<head>
<title>refNum &rsaquo; Quilt &rsaquo; Licence</title>
<!--HEAD_BEGIN-->
<meta http-equiv="Content-Type" content="text/html; charset=UTF8">





<script type="text/javascript" src="src/js/refnum.js"></script>

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script type="text/javascript">_uacct = "UA-1732444-2";urchinTracker();</script>

<link type="text/css" href="src/css/refnum.css" rel=stylesheet>
<!--HEAD_END-->
</head>
<body>

<div id="content">
<!--#include virtual="/src/inc/nav.inc" -->
<script language="javascript">navSelect("dev")</script>

<a href="index.html">
<div id="page_strap_frame" style="background:url('src/img/page_strap_quilt.png');">
<div id="page_strap_content" style="background:url('src/img/page_strap_quilt.jpg'); background-repeat: no-repeat; background-position: 22px 16px;"></div></div></a>
<div id="page_body">
<div id="page_content">



<table>
<tr>
<td valign=top>
<ul id="menu">
<li class="subtitle">Quilt</li>
<li><a href="index.html">Home</a></li>
<li><a href="licence.html">Licence</a></li>
<li><a href="version.html">Version History</a></li>
<li class="subtitle">Using Quilt</li>
<li><a href="xcode.html">Using Xcode</a></li>
<li><a href="visualstudio.html">Using Visual Studio</a></li>
</ul>
</td>
<td valign=top>



<h1>Licence</h1>
<p>
Quilt is distributed under the Open Source BSD licence:
</p>

<div class="box_licence">
<p>
Quilt is Copyright &copy; 2006-2010, refNum Software<br>
All rights reserved.
</p>

<p>
Redistribution and use in source and binary forms, with or without modification, are permitted
provided that the following conditions are met:
</p>

<ul>
<li>Redistributions of source code must retain the above copyright notice, this list of
conditions and the following disclaimer.</li>

<li>Redistributions in binary form must reproduce the above copyright notice, this list
of conditions and the following disclaimer in the documentation and/or other materials
provided with the distribution.</li>

<li>Neither the name of refNum Software, Nano, nor the names of its contributors may be
used to endorse or promote products derived from this software without specific prior
written permission.</li>
</ul>

<p>
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
</p>
</div>

<p>
This licence allows usage in both Open Source and commercial software, and does not require any
reciprocal licencing or release of source code when incorporated into commercial software.
</p>





</td>
</tr>
</table>



</div>
</div>
<div id="page_footer"></div>
</div>



<!--FOOTER_BEGIN-->
<div id="footer">
Copyright &copy; 2006-2010 <a href="http://www.refnum.com/">refNum Software</a>
</div>
<!--FOOTER_END-->
</body>
</html>
Loading

0 comments on commit 4cc51fd

Please sign in to comment.