blob: fa0833dd8fefc6f5504e8a14bd4368d958f439b5 (
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
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
|
PROJNAME = cd
LIBNAME = ftgl
OPT = YES
ftglyph_sources = \
FTGlyph/FTGlyph.cpp \
FTGlyph/FTGlyphGlue.cpp \
FTGlyph/FTBitmapGlyph.cpp \
FTGlyph/FTBufferGlyph.cpp \
FTGlyph/FTExtrudeGlyph.cpp \
FTGlyph/FTOutlineGlyph.cpp \
FTGlyph/FTPixmapGlyph.cpp \
FTGlyph/FTPolygonGlyph.cpp \
FTGlyph/FTTextureGlyph.cpp
ftfont_sources = \
FTFont/FTFont.cpp \
FTFont/FTFontGlue.cpp \
FTFont/FTBitmapFont.cpp \
FTFont/FTBufferFont.cpp \
FTFont/FTExtrudeFont.cpp \
FTFont/FTOutlineFont.cpp \
FTFont/FTPixmapFont.cpp \
FTFont/FTPolygonFont.cpp \
FTFont/FTTextureFont.cpp
ftlayout_sources = \
FTLayout/FTLayout.cpp \
FTLayout/FTLayoutGlue.cpp \
FTLayout/FTSimpleLayout.cpp
libftgl_la_SOURCES = \
FTBuffer.cpp \
FTCharmap.cpp \
FTContour.cpp \
FTFace.cpp \
FTGlyphContainer.cpp \
FTLibrary.cpp \
FTPoint.cpp \
FTSize.cpp \
FTVectoriser.cpp \
$(ftglyph_sources) \
$(ftfont_sources) \
$(ftlayout_sources)
SRC := $(addprefix ftgl/, $(libftgl_la_SOURCES))
INCLUDES := ftgl freetype2
DEFINES = FTGL_LIBRARY_STATIC
USE_OPENGL = Yes
LIBS = freetype
ifneq ($(findstring dll, $(TEC_UNAME)), )
DEFINES = FTGL_LIBRARY
SRC += cd_ftgl.rc
endif
ifneq ($(findstring Win, $(TEC_SYSNAME)), )
LIBS = freetype6
endif
ifneq ($(findstring cygw, $(TEC_UNAME)), )
LIBS = freetype-6
endif
|