Menu

Tree [963b46] master /
 History

HTTPS access


File Date Author Commit
 src 2019-01-14 Gijs de Rooy Gijs de Rooy [7edc15] Fix SRTM download urls, thanks to James Hester
 .gitignore 2013-03-23 Gijs de Rooy Gijs de Rooy [259859] Split source code to one file per tab. Rename G...
 CMakeLists.txt 2014-05-08 Clément de l'Hamaide Clément de l'Hamaide [fc2d07] Fix Linux compilation
 LICENSE 2012-12-01 Gijs de Rooy Gijs de Rooy [d17797] Remove shape-decode, as it is now deprecated.
 README 2013-03-23 Gijs de Rooy Gijs de Rooy [259859] Split source code to one file per tab. Rename G...
 TODO 2013-03-23 Gijs de Rooy Gijs de Rooy [876737] Fix elevation download for locations around the...
 TerraGUI.pro 2013-03-23 Gijs de Rooy Gijs de Rooy [259859] Split source code to one file per tab. Rename G...

Read Me

Developed by Gijs de Rooy, for free use by the FlightGear Flight Simulator project

With the help of:
- Clement de l'Hamaide
- Emilian Huminiuc
- Alexey Kudrin
- Geoff McLane
- Peter Morgan
- Julien Nguyen
- Alex Park
- Teemu Rytilahti
- Yves Sablonier
- Christian Schmitt
- Kai Winter (QMapControl)

Manual is available online at http://wiki.flightgear.org/TerraGear_GUI

==========================================
=====  HOWTO: COMPILE TERRAGEAR GUI ======
==========================================

 I) Simple method : (depreciated for committers)

  cmake .
  make

  Now the binary is available in your current directory
  You can execute TerraGear GUI with : 

  ./terrageargui



 II) Advanced method :

  mkdir build
  mkdir bin
  cd build
  cmake -DCMAKE_INSTALL_PREFIX=../ ../
  make
  make install
  
  Now the binary is available in /bin from your current directory, and build file are in /build
  You can execute TerraGear GUI with :

  cd bin/
  ./terrageargui