49 lines
2.3 KiB
HTML
49 lines
2.3 KiB
HTML
<!DOCTYPE HTML>
|
||
<html>
|
||
<head>
|
||
<title>Compilation - PILG</title>
|
||
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||
<link rel="stylesheet" href="css/contenu.css" />
|
||
<link rel="stylesheet" href="css/miseEnPage.css" />
|
||
<!--[if lt IE 9]><script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
||
</head>
|
||
<body>
|
||
<nav>
|
||
<ul>
|
||
<li><a href="index.html">À propos</a></li>
|
||
<li><a href="Compilation.html">Compilation</a></li>
|
||
<li><a href="Avancement.html">Avancement</a></li>
|
||
<li><a href="https://github.com/GeoffreyFrogeye/PILG">Code source</a></li>
|
||
|
||
</ul>
|
||
</nav>
|
||
<section>
|
||
<header>
|
||
<h1>Projet ISN de Lucas et de Geoffrey</h1>
|
||
<p>Un éditeur d'image en ligne de commandes</p>
|
||
</header>
|
||
<article>
|
||
<h1>Compilation</h1>
|
||
<p>Il n'existe pas de fichier binaire à télécharger pour le moment, le seul moyen d'avoir un aperçu du programme est de le compiler.</p>
|
||
|
||
<p>Téléchargement : <code>git clone https://github.com/GeoffreyFrogeye/PILG.git</code></p>
|
||
|
||
<h2>Windows</h2>
|
||
|
||
<ol><li>Télécharger et installer <a href="http://www.mingw.org/">MinGW</a></li><li>Inclure <strong>MinGW</strong> dans la variable d'environnement <code>%PATH%</code> : <code>set path=%path%;C:\MinGW\bin</code></li><li>Télécharger la <a href="http://www.libsdl.org/release/SDL-devel-1.2.15-mingw32.tar.gz">bibliothèque de développement SDL 1.2.15</a>, copier le contenu des dossier <em>lib</em> et <em>include</em> de l'archive téléchargée dans le dossier de <strong>MinGW</strong></li><li>Télécharger la <a href="http://www.libsdl.org/release/SDL-1.2.15-win32.zip">bibliothèque d’exécution de SDL 1.2.15</a> et placer <em>SDL.dll</em> dans le dossier <em>bin</em></li><li>Compiler : <code>mingw32-make -f Makefile.win</code></li></ol>
|
||
|
||
<p>L’exécutable se trouvera dans le dossier <em>bin</em></p>
|
||
|
||
<h2>Debian / Linux</h2>
|
||
|
||
<ol><li>Installer le nécessaire à la compilation ainsi que la <strong>bibliothèque de développement SDL 1.2</strong> : <code>sudo apt-get install build-essential libsdl1.2-dev</code></li><li>Compiler : <code>make</code></li></ol>
|
||
|
||
<p>L’exécutable se trouvera dans le dossier <em>bin</em></p>
|
||
</article>
|
||
</section>
|
||
<footer>
|
||
<hr/>
|
||
Copyright 2014 Lucas et Geoffrey
|
||
</footer>
|
||
</body>
|
||
</html> |