88 lines
3.1 KiB
HTML
88 lines
3.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<title>ejson Library</title>
|
|
<link rel="stylesheet" href="base.css">
|
|
<link rel="stylesheet" href="menu.css">
|
|
</head>
|
|
<body>
|
|
<div class="navbar navbar-fixed-top">
|
|
<div class="container">
|
|
<h1><a href="index.html">ejson library</a></h1>
|
|
<h4><a href="http://github.com/heeroyui/ejson/"> [ sources ]</a></h4>
|
|
<h3>API:</h3> <div id="menu">
|
|
<ul class="niveau1">
|
|
<li><a href="namespace_ejson.html">ejson</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<h3>Tutorials:</h3><div id="menu">
|
|
<ul class="niveau1"><li><a href="tutorial_000_Build.html">Build</a></li>
|
|
</ul><ul class="niveau1"><li><a href="tutorial_001_Read.html">Read</a></li>
|
|
</ul><ul class="niveau1"><li><a href="tutorial_002_Write.html">Write</a></li>
|
|
</ul></div>
|
|
<br/><h3>Associate libraries:</h3><div id="menu">
|
|
<ul class="niveau1"><li><a href="../ewol/index.html">ewol</a></li>
|
|
</ul><ul class="niveau1"><li><a href="../egami/index.html">egami</a></li>
|
|
</ul><ul class="niveau1"><li><a href="../ege/index.html">ege</a></li>
|
|
</ul><ul class="niveau1"><li><a href="../esvg/index.html">esvg</a></li>
|
|
</ul><ul class="niveau1"><li><a href="../etk/index.html">etk</a></li>
|
|
</ul><ul class="niveau1"><li><a href="../exml/index.html">exml</a></li>
|
|
</ul></div>
|
|
<br/>
|
|
<br/>
|
|
<br/>
|
|
<br/>
|
|
<br/>
|
|
<br/>
|
|
</div>
|
|
</div>
|
|
<div class="container" id="content">
|
|
<h1><center>build</center></h1>
|
|
<hr> <div align="right"><a href="tutorial_001_Read.html">Next: Read</a></div>
|
|
<h1><center>E-json extract and build examples</center></h1>
|
|
<hr><div align="right"><a href="tutorial_001_Read.html">Next: Read a file</a></div><br/>
|
|
All developpement software will start by getting the dependency and the sources.<br/>
|
|
<h2> Linux dependency packages </h2>
|
|
<pre>
|
|
sudo apt-get install g++ zlib1g-dev
|
|
<span class="code-preproc"># if you want to compile with clang :</span>
|
|
sudo apt-get install clang
|
|
</pre><br/>
|
|
<h2> Download instructions </h2><br/>
|
|
Download the software :
|
|
<pre>
|
|
<span class="code-preproc"># create a working directory path</span>
|
|
mkdir your_workspace_path
|
|
cd your_workspace_path
|
|
<span class="code-preproc"># clone ewol and all sub-library</span>
|
|
git clone http://github.com/HeeroYui/ewol.git
|
|
cd ewol
|
|
git submodule init
|
|
git submodule update
|
|
cd ..
|
|
<span class="code-preproc"># download examples</span>
|
|
git clone http://github.com/HeeroYui/example.git
|
|
</pre><br/>
|
|
<br/>
|
|
<b>Note:</b><pre>
|
|
The full build tool documentation is availlable here : <a href="http://heeroyui.github.io/lutin/">lutin</a>
|
|
</pre><br/>
|
|
<h2> Common build instructions </h2><br/>
|
|
Compile software in debug for the curent platform :
|
|
<pre>
|
|
./ewol/build/lutin.py -mdebug ejson*
|
|
</pre><br/>
|
|
</div>
|
|
<script>
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
|
ga('create', 'UA-46753803-1', 'heeroyui.github.io');
|
|
ga('send', 'pageview');
|
|
</script>
|
|
</body>
|
|
</html>
|