aboutsummaryrefslogtreecommitdiffstats
path: root/doc/_templates/index.html
blob: 6a08f891215c72339232014f290ccd3904b10c15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% extends "layout.html" %}
{% set title = 'Overview' %}
{% block body %}
<div class="section">
  <h1>GeneratorRunner {{ version }}</h1>

    <p>GeneratorRunner is a tool that eases the development of binding generators for C++ and Qt-based
    libraries by providing a framework to help automating most of the process. It uses the
    ApiExtractor library to parse the header files and manipulate the classes information while
    generating the binding code using front-end modules provided by the user.

    <p>GeneratorRunner is based on the
    <a href="http://labs.trolltech.com/page/Projects/QtScript/Generator">QtScriptGenerator</a> project.</p>

  <h2>Documentation</h2>
  <table class="contentstable" align="center" style="margin-left: 30px"><tr>
    <td width="50%">
      <p class="biglink"><a class="biglink" href="{{ pathto("contents") }}">Contents</a><br/>
         <span class="linkdescr">for a complete overview</span></p>
    </td>
    <td width="50%">
      <p class="biglink"><a class="biglink" href="{{ pathto("overview") }}">Overview</a><br/>
         <span class="linkdescr">how generator works</span></p>
    </td></tr>
  </table>
</div>
{% endblock %}