File: dependencies.dox

package info (click to toggle)
cegui-mk2 0.8.7%2Bgit20220615-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 57,816 kB
  • sloc: cpp: 306,263; python: 1,175; ansic: 812; sh: 616; xml: 191; java: 162; makefile: 21
file content (107 lines) | stat: -rw-r--r-- 4,640 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/**
@page dependencies Dependency Libraries for Crazy Eddie's GUI System
@author Paul D Turner
@tableofcontents

@section dependencies_overview Overview
The following is a list of all libraries that CEGUI can make use of:

@subsection dependencies_core Core Functionality
- Freetype2 (http://www.freetype.org/freetype2/)
    - Provides TTF + other font support.
- PCRE (http://www.pcre.org/)
    - Provides regex based string filtering and validation in Editbox.
- Fribidi (http://www.fribidi.org/)
    - Provides bidirectional text support.
- Minibidi
    - Provides bidirectional text support (not external lib, is compiled in).
- Minizip (http://zlib.net/)
    - Required for minizip based resource provider.

@subsection dependencies_rendering Rendering
- OpenGL loading libraries:
  - GLEW (http://glew.sourceforge.net/)
  - Epoxy (https://github.com/yaronct/libepoxy)
  - Either GLEW or Epoxy is required for the desktop OpenGL 3.2 renderer module.
  - Epoxy is required for the OpenGL ES 2.0 renderer module.
  - GLEW is required for the old desktop OpenGL 1.2 renderer module.
- GLM (http://glm.g-truc.net/)
    - Required for GL and GL3 renderer modules.
- DirectXSDK (http://www.microsoft.com/en-us/download/details.aspx?id=6812)
    - Required for all D3D renderer modules.
- D3DX11Effects
    - Required for D3D11 renderer module (part of DXSDK above)
- Irrlicht (http://irrlicht.sourceforge.net/)
    - Required for Irrlicht renderer module.
- Ogre (http://www.ogre3d.org/)
    - Required for Ogre renderer module.
- DirectFB (http://directfb.org/)
    - Required for DirectFB support (broken - do not use)
- OpenGL ES emulators:
  - PowerVR's (http://community.imgtec.com/developers/powervr/graphics-sdk/)
  - There are others, but PowerVR's seems to be the best.
  - An OpenGL ES emulator is recommended (and on some platforms, necessary) to
    use OpenGL ES 2.0 together with EGL on a desktop OS.

@subsection dependencies_parsers XML Parsers
- EXPAT (http://expat.sourceforge.net/)
    - Required for expat XMLParser module.
- XercesC++ (http://xerces.apache.org/xerces-c/)
    - Required for xerces-c based XMLParser module.
- LibXml2 (http://www.xmlsoft.org/)
    - Required for libxml2 based XMLParser module.
- TinyXML (http://www.grinninglizard.com/tinyxml/)
    - Required for TinyXML based XMLParser module.
- TinyXML2 (http://www.grinninglizard.com/tinyxml2/index.html)
    - Required for TinyXML2 based XMLParser module.
- RapidXML (http://rapidxml.sourceforge.net/)
    - Required for RapidXML based XMLParser module.

@subsection dependencies_codecs Image Loading
- DevIL (http://openil.sourceforge.net/)
    - Required for DevIL based ImageCodec module
- FreeImage (http://freeimage.sourceforge.net/)
    - Required for FreeImage based ImageCodec module
- SILLY (http://www.cegui.org.uk/wiki/index.php/SILLY)
    - Required for SILLY based ImageCodec module.
- Corona (http://corona.sourceforge.net/)
    - Required for Corona based ImageCodec module.
- PVRTools (http://www.imgtec.com/powervr/insider/powervr-insider.asp)
    - Required for PVR based ImageCodec module

@subsection dependencies_scripting Scripting
- Lua 5.1 (http://www.lua.org/)
    - Required for Lua scripting module and lua binding generator.
- toLua++ (http://www.codenix.com/~tolua/)
    - Required for Lua scripting module.
- Python (http://www.python.org/)
    - Required for python extension modules.
- Python libs (http://www.python.org/)
    - Required for python extension modules.
- Boost python (http://www.boost.org/)
    - Required for python extension modules.

@subsection dependencies_samples Samples Framework
- GLFW (http://www.glfw.org/)
    - Required for OpenGL support in samples.
    - For desktop OpenGL rendering, either version 2 or 3 is required.
    - For OpenGL ES 2.0 rendering, version 3 is required.
- OIS (http://sourceforge.net/projects/wgois/)
    - Required for Ogre support in samples
- GTK2 (http://www.gtk.org/)
    - Required to enable the GTK2 based renderer selector used in the samples.

@subsection dependencies_other Other
- Boost unit_test_framework (http://www.boost.org/)
    - Required to build cegui tests.
- Doxygen (http://www.stack.nl/~dimitri/doxygen/)
    - Required to build docs (makefile target not working yet)

Note that none of the above are actually required. Typically you will choose what
functions you wish to have available in CEGUI and install (or build, when using
the source based dependency pack) the options that you have chosen. Typical
choices are Freetype2, PCRE, one of the XML libs, one of the image loading libs
and one of the rendering API/engine libs.

*/