]> vaikene.ee Git - evaf/blobdiff - www/index.html
Added web page files to the repository.
[evaf] / www / index.html
diff --git a/www/index.html b/www/index.html
new file mode 100644 (file)
index 0000000..d407dff
--- /dev/null
@@ -0,0 +1,92 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html lang="et" xmlns="http://www.w3.org/1999/xhtml" xml:lang="et">
+
+    <head>
+        <meta http-equiv="CONTENT-TYPE" content="text/html; charset=utf-8" />
+        <title>eVaf</title>
+        <meta name="Author" content="Enar Väikene" />
+        <meta name="description" content="eVaf -- C++ cross-platform application development framework using Qt" />
+        <meta name="keywords" content="evaf c++ application development framework" />
+        <link rel="StyleSheet" href="evaf.css" type="text/css" media="all" />
+    </head>
+
+    <body>
+
+        <h1>eVaf</h1>
+
+        <h2>Introduction</h2>
+
+        <p>eVaf is a C++ cross-platform application development framework using <a href="http://qt.nokia.com/">Qt</a>.
+        It can be used to build modular applications for Windows and Linux.</p>
+
+        <ul>
+            <li><a href="overview.html">eVaf overview</a></li>
+            <li><a href="/evaf.api">eVaf API documentation</a></li>
+        </ul>
+
+        <h2>Copyright</h2>
+
+        <p>The eVaf C++ application development framework is Copyright &copy; 2011 Enar Väikene.</p>
+
+        <p>You may use, distribute and copy the eVaf C++ application development framework under the terms of
+        <a href="http://www.gnu.org/licenses/gpl-3.0.html">GNU General Public License version 3</a>.
+        Commercial license is available upon request.</p>
+
+        <h2>Getting eVaf</h2>
+
+        <p>Use git to clone the repository:</p>
+
+        <pre><code>git clone http://www.vaikene.net/git/evaf</code></pre>
+
+        <p>The repository can also be browsed <a href="/gitweb/gitweb.cgi?p=evaf;a=tree">online</a>.</p>
+
+        <h2>Building eVaf</h2>
+
+        <p>To build eVaf, you need:</p>
+
+        <ol>
+            <li>Qt version 4.7 or newer;</li>
+            <li>CMake version 2.6 or newer.</li>
+        </ol>
+
+        <p>Run the following commands in the eVaf root directory.</p>
+
+        <p>Linux:</p>
+
+        <pre>evaf $ <code>mkdir build</code>
+evaf $ <code>cd build</code>
+evaf/build $ <code>cmake ..</code>
+evaf/build $ <code>make</code></pre>
+
+        <p>Windows:</p>
+
+        <pre>evaf&gt;<code>mkdir build</code>
+evaf&gt;<code>cd build</code>
+evaf\build&gt;<code>cmake -G "NMake Makefiles"..</code>
+evaf\build&gt;<code>nmake</code></pre>
+
+        <p>or:</p>
+
+        <pre>evaf&gt; <code>mkdir build</code>
+evaf&gt; <code>cd build</code>
+evaf\build&gt; <code>cmake ..</code></pre>
+
+        <p>and then open the generated Visual Studio solution file.</p>
+
+        <h2>Contact information</h2>
+
+        <p>On any questions or requests, please contact <a href="mailto:enar@vaikene.net">enar@vaikene.net</a>.<p>
+
+        <script type="text/javascript">
+            var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+            document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+        </script>
+        <script type="text/javascript">
+            var pageTracker = _gat._getTracker("UA-5064426-1");
+            pageTracker._initData();
+            pageTracker._trackPageview();
+        </script>
+
+    </body>
+
+</html>