summaryrefslogtreecommitdiffstats
path: root/rules/sdl2-ttf.in
blob: 4dafa09ae4a2bba90cbed6ce4f6d56acdef85693 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
## SECTION=multimedia_sdl

menuconfig SDL2_TTF
	tristate
	select SDL2
	select FREETYPE
	select HARFBUZZ if SDL2_TTF_HARFBUZZ
	prompt "SDL2 ttf                      "
	help
	  This is a sample library which allows you to use TrueType
	  fonts in your SDL applications. It comes with an example
	  program "showfont" which displays an example string for a
	  given TrueType font file.

if SDL2_TTF

config SDL2_TTF_HARFBUZZ
	bool
	prompt "enable harfbuzz support"
	help
	  Enable support for Harfbuzz (meaning open type, in Persian),
	  the open type shaping engine.

endif