Difference between revisions of "Development on Windows/fr"

From GIMX
Jump to: navigation, search
(Updating to match new version of source page)
(Created page with "Télécharger et installer [http://sourceforge.net/p/msys2/wiki/MSYS2%20installation/ Msys2]. Bien suivre les instructions du wiki Msys2.")
Line 10: Line 10:
 
</span>
 
</span>
  
Download and install [http://sourceforge.net/p/msys2/wiki/MSYS2%20installation/ Msys2].
+
Télécharger et installer [http://sourceforge.net/p/msys2/wiki/MSYS2%20installation/ Msys2].
Make sure to follow the instructions from the Msys2 wiki.
+
Bien suivre les instructions du wiki Msys2.
  
 
If you are running a 32-bit Windows, install the "32-bit" of Msys2.<br />
 
If you are running a 32-bit Windows, install the "32-bit" of Msys2.<br />

Revision as of 10:42, 10 June 2014

Other languages:
English • ‎français

Cette page explique comment installer un environnement de compilation (basé sur MinGW) pour construire GIMX.
Elle explique aussi comment installer Eclipse CDT et comment effectuer un checkout.
Sauf cas contraire, effectuer une installation par défaut (répertoires par défaut, etc...).

MinGW/MSYS

Télécharger et installer Msys2. Bien suivre les instructions du wiki Msys2.

If you are running a 32-bit Windows, install the "32-bit" of Msys2.
If you are running a 64-bit Windows, you can choose either the "64-bit" version or the "32-bit" version.

Development tools

Run the Msys2 shell and type:

pacman --noconfirm -S wget
wget https://raw.githubusercontent.com/matlo/GIMX-build/master/win/install.sh
./install.sh

Compilation

Cette partie explique comment faire un checkout et comment compiler GIMX depuis la ligne de commande.
Lancer C:\MinGW\msys\1.0\msys.bat
Télécharger et exécuter build.sh :

   wget https://raw.github.com/matlo/GIMX-build/master/win/build.sh
   ./build.sh

Tous les binaires sont copiés dans C:\MinGW\msys\1.0\home\username\GIMX\setup.

Eclipse IDE

Cette partie n'est utile que si vous avez l'intention de modifier le code source. Si vous voulez seulement compiler GIMX, vous pouvez ignorer ceci.
Eclipse est un IDE qui peut être utilisé avec les outils de compilation MinGW/MSYS.
Assurez vous d'avoir un JRE java installé sur votre système.
Télécharger Eclipse IDE for C/C++ Developers. Le décompresser dans un répertoire quelconque.
Exécuter eclipse.exe.

Checkout du projet

Todo: add instructions.