-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmeson_options.txt
126 lines (119 loc) · 3.62 KB
/
meson_options.txt
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# Configuration options
option('engine-ctor',
type: 'boolean',
description: 'Use constructor attribute to register an engine')
option('gl',
type: 'boolean',
description: 'OpenGL 1.0 Engine')
option('glesv1_cm',
type: 'boolean',
description: 'OpenGL ES 1.1 CM Engine')
option('glesv2',
type: 'boolean',
description: 'OpenGL ES 2.0 Engine')
option('pgl',
type: 'string',
value : 'false',
description: 'PATH to PortableGL platform header')
option('pgl-cflags',
type: 'string',
description: 'CFLAGS for PortableGL platform header')
option('gl-x11',
type: 'boolean',
description: 'OpenGL extension for Xlib Backend')
option('gl-directfb',
type: 'boolean',
description: 'OpenGL extension for DirectFB Backend')
option('gl-fbdev',
type: 'boolean',
description: 'OpenGL extension for Linux Framebuffer Backend')
option('egl-x11',
type: 'boolean',
description: 'EGL interface for Xlib Backend')
option('egl-directfb',
type: 'boolean',
description: 'EGL interface for DirectFB Backend')
option('egl-fbdev',
type: 'boolean',
description: 'EGL interface for Linux Framebuffer Backend')
option('egl-wayland',
type: 'boolean',
description: 'EGL interface for Wayland Backend')
option('egl-xcb',
type: 'boolean',
description: 'EGL interface for XCB Backend')
option('egl-drm',
type: 'boolean',
description: 'EGL interface for DRM Backend')
option('egl-rpi',
type: 'boolean',
description: 'EGL interface for Raspberry Pi Dispmanx Backend')
option('waffle',
type: 'boolean',
description: 'Waffle cross-platform wrapper')
option('vk-x11',
type: 'boolean',
description: 'Vulkan extension for Xlib WSI')
option('vk-directfb',
type: 'boolean',
description: 'Vulkan extension for DirectFB WSI')
option('vk-fbdev',
type: 'boolean',
description: 'Vulkan extension for Linux Framebuffer WSI')
option('vk-wayland',
type: 'boolean',
description: 'Vulkan extension for Wayland WSI')
option('vk-xcb',
type: 'boolean',
description: 'Vulkan extension for XCB WSI')
option('vk-d2d',
type: 'boolean',
description: 'Vulkan extension for Direct-to-Display WSI')
option('efl',
type: 'boolean',
description: 'EFL GUI Toolkit')
option('fltk',
type: 'boolean',
description: 'FLTK GUI Toolkit')
option('glfw',
type: 'boolean',
description: 'GLFW GUI Toolkit')
option('glut',
type: 'boolean',
description: 'GLUT GUI Toolkit')
option('gtk',
type: 'boolean',
description: 'GTK+ GUI Toolkit')
option('qt',
type: 'boolean',
description: 'Qt GUI Toolkit')
option('sdl',
type: 'boolean',
description: 'SDL GUI Toolkit')
option('sfml',
type: 'boolean',
description: 'SFML GUI Toolkit')
option('wx',
type: 'boolean',
description: 'wxWidgets GUI Toolkit')
option('with-gtk',
type: 'combo',
choices : ['2', '3'],
value : '3',
description: 'GTK+ GUI Toolkit version')
option('with-qt',
type: 'combo',
choices : ['4', '5'],
value : '5',
description: 'Qt GUI Toolkit version')
option('with-sdl',
type: 'combo',
choices : ['1', '2'],
value : '2',
description: 'SDL GUI Toolkit version')
option('png',
type: 'boolean',
description: 'PNG loader')
option('tiff',
type: 'boolean',
description: 'TIFF loader')