forked from pygame-community/pygame-ce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
35 lines (28 loc) · 1.67 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
# Controls whether pygame.image is built with extended image format support.
# Enabled by default, disable explicitly if you don't want to compile with SDL_image.
option('image', type: 'feature', value: 'enabled')
# Controls whether pygame.mixer, pygame.mixer.music and pygame._sdl2.mixer are built.
# Enabled by default, disable explicitly if you don't want to compile with SDL_mixer.
option('mixer', type: 'feature', value: 'enabled')
# Controls whether pygame.font is built using SDL_ttf.
# Enabled by default, disable explicitly if you don't want to compile with SDL_ttf.
# If this is disabled, and the freetype option is enabled, a pygame.font module will
# be created based on the freetype module (ftfont)
option('font', type: 'feature', value: 'enabled')
# Controls whether pygame.freetype is built.
# Enabled by default, disable explicitly if you don't want to compile with freetype2.
option('freetype', type: 'feature', value: 'enabled')
# Controls whether pygame.midi is built.
# Enabled by default, disable explicitly if you don't want to compile with
# portmidi/porttime.
option('midi', type: 'feature', value: 'enabled')
# Controls whether to make a "stripped" pygame install. Enabling this disables
# the bundling of docs/examples/tests/stubs in the wheels.
# The default behaviour is to bundle all of these.
option('stripped', type: 'boolean', value: 'false')
# Controls whether to compile with -Werror (or its msvc equivalent). The default
# behaviour is to not do this by default
option('error_on_warns', type: 'boolean', value: 'false')
# Controls whether to error on build if generated docs are missing. Defaults to
# false.
option('error_docs_missing', type: 'boolean', value: 'false')