]> vaikene.ee Git - evaf/blob - www/index.html
Added web page files to the repository.
[evaf] / www / index.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html lang="et" xmlns="http://www.w3.org/1999/xhtml" xml:lang="et">
3
4 <head>
5 <meta http-equiv="CONTENT-TYPE" content="text/html; charset=utf-8" />
6 <title>eVaf</title>
7 <meta name="Author" content="Enar Väikene" />
8 <meta name="description" content="eVaf -- C++ cross-platform application development framework using Qt" />
9 <meta name="keywords" content="evaf c++ application development framework" />
10 <link rel="StyleSheet" href="evaf.css" type="text/css" media="all" />
11 </head>
12
13 <body>
14
15 <h1>eVaf</h1>
16
17 <h2>Introduction</h2>
18
19 <p>eVaf is a C++ cross-platform application development framework using <a href="http://qt.nokia.com/">Qt</a>.
20 It can be used to build modular applications for Windows and Linux.</p>
21
22 <ul>
23 <li><a href="overview.html">eVaf overview</a></li>
24 <li><a href="/evaf.api">eVaf API documentation</a></li>
25 </ul>
26
27 <h2>Copyright</h2>
28
29 <p>The eVaf C++ application development framework is Copyright &copy; 2011 Enar Väikene.</p>
30
31 <p>You may use, distribute and copy the eVaf C++ application development framework under the terms of
32 <a href="http://www.gnu.org/licenses/gpl-3.0.html">GNU General Public License version 3</a>.
33 Commercial license is available upon request.</p>
34
35 <h2>Getting eVaf</h2>
36
37 <p>Use git to clone the repository:</p>
38
39 <pre><code>git clone http://www.vaikene.net/git/evaf</code></pre>
40
41 <p>The repository can also be browsed <a href="/gitweb/gitweb.cgi?p=evaf;a=tree">online</a>.</p>
42
43 <h2>Building eVaf</h2>
44
45 <p>To build eVaf, you need:</p>
46
47 <ol>
48 <li>Qt version 4.7 or newer;</li>
49 <li>CMake version 2.6 or newer.</li>
50 </ol>
51
52 <p>Run the following commands in the eVaf root directory.</p>
53
54 <p>Linux:</p>
55
56 <pre>evaf $ <code>mkdir build</code>
57 evaf $ <code>cd build</code>
58 evaf/build $ <code>cmake ..</code>
59 evaf/build $ <code>make</code></pre>
60
61 <p>Windows:</p>
62
63 <pre>evaf&gt;<code>mkdir build</code>
64 evaf&gt;<code>cd build</code>
65 evaf\build&gt;<code>cmake -G "NMake Makefiles"..</code>
66 evaf\build&gt;<code>nmake</code></pre>
67
68 <p>or:</p>
69
70 <pre>evaf&gt; <code>mkdir build</code>
71 evaf&gt; <code>cd build</code>
72 evaf\build&gt; <code>cmake ..</code></pre>
73
74 <p>and then open the generated Visual Studio solution file.</p>
75
76 <h2>Contact information</h2>
77
78 <p>On any questions or requests, please contact <a href="mailto:enar@vaikene.net">enar@vaikene.net</a>.<p>
79
80 <script type="text/javascript">
81 var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
82 document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
83 </script>
84 <script type="text/javascript">
85 var pageTracker = _gat._getTracker("UA-5064426-1");
86 pageTracker._initData();
87 pageTracker._trackPageview();
88 </script>
89
90 </body>
91
92 </html>