-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.mak
More file actions
56 lines (38 loc) · 779 Bytes
/
config.mak
File metadata and controls
56 lines (38 loc) · 779 Bytes
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
#########################################################
#
# configuration to make OpenGUI library
#
#########################################################
#
# enable X11 support
#
X11SUPPORT = -lXext -lX11
#
# enable X11 DGA2 support
#
#DGASUPPORT = -lXxf86dga -lXext -lX11
#
# enable PNG file format
#
#PNGSUPPORT = -lpng -lz
#
# enable TIFF file format
#
#TIFFSUPPORT = -ltiff -ljpeg -lz
#
# enable JPEG file format (needed by examples)
#
JPGSUPPORT = -ljpeg
#
# enable FREETYPE2 support
#
#TTFSUPPORT = -lfreetype
#
# enable THREAD-SAFE improvements (if you can acceas library from more threads only)
#
THREADSUPPORT = -lpthread
#
# enable OpenGL support (MesaGL 3 & above)
#
GLSUPPORT = YES
#########################################################