Difference between revisions of "FTGL"

From HaskellWiki
Jump to navigation Jump to search
 
(→‎More information: Added link to "cabal install FTGL on Windows, and getting exe’s that use it to work")
 
(One intermediate revision by the same user not shown)
Line 7: Line 7:
   
 
If you haven't done this yet, install
 
If you haven't done this yet, install
[http://hackage.haskell.org/packages/archive/cabal-install/ Cabal install]
+
[http://hackage.haskell.org/cgi-bin/hackage-scripts/package/cabal-install cabal-install]
 
(see also [[Cabal/How to install a Cabal package | "How to install a Cabal package"]]),
 
(see also [[Cabal/How to install a Cabal package | "How to install a Cabal package"]]),
 
then install FTGL with the command:
 
then install FTGL with the command:
 
cabal install --global ftgl
 
cabal install --global ftgl
   
The "cabal install" command automatically installs all necessary packages
+
The "cabal install" command automatically installs all necessary packages. If you don't have the access rights to install the software globally, you can leave out the "--global" flag.
   
   
Line 23: Line 23:
   
 
* [http://ftgl.sourceforge.net/docs/html/ FTGL User Guide]
 
* [http://ftgl.sourceforge.net/docs/html/ FTGL User Guide]
  +
* [https://noamlewis.wordpress.com/2012/12/16/cabal-install-ftgl-on-windows-and-getting-exes-that-use-it-to-work/ Cabal install FTGL on Windows, and getting exe’s that use it to work]
 
* [http://ftgl.sourceforge.net The main page at SourceForge.net]
 
* [http://ftgl.sourceforge.net The main page at SourceForge.net]
   

Latest revision as of 08:20, 8 February 2015

Introduction

FTGL is a library for rendering fonts in an OpenGL environment


Installation

If you haven't done this yet, install cabal-install (see also "How to install a Cabal package"), then install FTGL with the command:

 cabal install --global ftgl

The "cabal install" command automatically installs all necessary packages. If you don't have the access rights to install the software globally, you can leave out the "--global" flag.


Example

See the FTGL 1.0 announcement


More information