blob: bbe631bd0c2028cafd0c7898e3b16aaaaa7f1122 [file] [log] [blame]
Chun-wei Fand7b66362015-11-03 19:00:42 +08001# NMake Makefile portion for displaying config info
2
Ebrahim Byagowid8e2eb92016-10-09 09:06:05 +03303INC_FEATURES = Fallback OT
Chun-wei Fand7b66362015-11-03 19:00:42 +08004BUILT_TOOLS =
5BUILT_LIBRARIES = HarfBuzz
6
7!if "$(GLIB)" == "1"
8UNICODE_IMPL = GLib
9INC_FEATURES = $(INC_FEATURES) GLib
10BUILT_TOOLS = hb-shape.exe hb-ot-shape-closure.exe
11!if "$(CAIRO_FT)" == "1"
12BUILT_TOOLS = hb-view.exe $(BUILT_TOOLS)
13!endif
14!else
15UNICODE_IMPL = ucdn
16!endif
17
18!if "$(FREETYPE)" == "1"
19INC_FEATURES = $(INC_FEATURES) FreeType
20!endif
21
22!if "$(GRAPHITE2)" == "1"
23INC_FEATURES = $(INC_FEATURES) Graphite2
24!endif
25
Ebrahim Byagowid8e2eb92016-10-09 09:06:05 +033026!if "$(UNISCRIBE)" == "1"
27INC_FEATURES = $(INC_FEATURES) Uniscribe
28!endif
29
Chun-wei Fanf6ffba62015-12-09 14:57:15 +080030!if "$(DIRECTWRITE)" == "1"
31INC_FEATURES = $(INC_FEATURES) DirectWrite
32!endif
33
Chun-wei Fand7b66362015-11-03 19:00:42 +080034!if "$(ICU)" == "1"
35BUILT_LIBRARIES = $(BUILT_LIBRARIES) HarfBuzz-ICU
36!endif
37
38!if "$(GOBJECT)" == "1"
39BUILT_LIBRARIES = $(BUILT_LIBRARIES) HarfBuzz-GObject
40!endif
41
42!if "$(INTROSPECTION)" == "1"
43BUILD_INTROSPECTION = yes
44!else
45BUILD_INTROSPECTION = no
46!endif
47
48build-info-hb:
49 @echo.
50 @echo ==================================
51 @echo Configuration for HarfBuzz Library
52 @echo ==================================
53 @echo Unicode Implementation: $(UNICODE_IMPL)
54 @echo Enabled Features: $(INC_FEATURES)
55
56all-build-info: build-info-hb
57 @echo.
58 @echo ----------------
59 @echo Other build info
60 @echo ----------------
61 @echo Built Libraries: $(BUILT_LIBRARIES)
62 @echo Built Tools: $(BUILT_TOOLS)
63 @echo Introspection: $(BUILD_INTROSPECTION)
64
65help:
66 @echo.
67 @echo =============================
68 @echo Building HarfBuzz Using NMake
69 @echo =============================
70 @echo nmake /f Makefile.vc CFG=[release^|debug] ^<PREFIX=PATH^> OPTION=1 ...
71 @echo.
72 @echo Where:
73 @echo ------
74 @echo CFG: Required, use CFG=release for an optimized build and CFG=debug
75 @echo for a debug build. PDB files are generated for all builds.
76 @echo.
77 @echo PREFIX: Optional, the path where dependent libraries and tools may be
78 @echo found, default is ^$(srcrootdir)\..\vs^$(short_vs_ver)\^$(platform),
79 @echo where ^$(short_vs_ver) is 9 for VS 2008, 10 for VS 2010 and so on; and
80 @echo ^$(platform) is Win32 for 32-bit builds and x64 for x64 builds.
81 @echo.
82 @echo OPTION: Optional, may be any of the following, use OPTION=1 to enable;
83 @echo multiple OPTION's may be used. If no OPTION is specified, a default
Ebrahim Byagowid8e2eb92016-10-09 09:06:05 +033084 @echo HarfBuzz DLL is built with OpenType and fallback support
Chun-wei Fand7b66362015-11-03 19:00:42 +080085 @echo with a bundled Unicode implementation (UCDN).
86 @echo ======
Ebrahim Byagowid8e2eb92016-10-09 09:06:05 +033087 @echo UNISCRIBE:
88 @echo Enable Uniscribe support.
89 @echo.
Chun-wei Fanf6ffba62015-12-09 14:57:15 +080090 @echo DIRECTWRITE:
91 @echo Enable DirectWrite support, requires a recent enough Windows SDK.
92 @echo.
Chun-wei Fand7b66362015-11-03 19:00:42 +080093 @echo GRAPHITE2:
94 @echo Enable graphite2 support, requires the SIL Graphite2 library
95 @echo.
96 @echo FREETYPE:
97 @echo Enable FreeType2 support, requires the FreeType2 library
98 @echo.
99 @echo GLIB:
100 @echo Enable GLib2 support, with GLib Unicode support, requires the GNOME GLib2
101 @echo library. Enables the build of utility programs.
102 @echo.
103 @echo ICU:
104 @echo Enable the HarfBuzz-ICU layout library, requires the International
105 @echo Components for Unicode (ICU) libraries.
106 @echo.
107 @echo GOBJECT:
108 @echo Enable the HarfBuzz-GObject library, also implies GLib2 support,
109 @echo requires the GNOME GLib2 libraries and tools, notably the glib-mkenums
110 @echo tool script, which will require a PERL interpretor (use
111 @echo PERL=^$(PATH_TO_PERL_INTERPRETOR)) if it is not already in your PATH).
112 @echo.
113 @echo INTROSPECTION:
114 @echo Enable the build of introspection files, also implies GObject/GLib2 support,
115 @echo requires the GNOME gobject-introspection libraries and tools. You will need
116 @echo to ensure the pkg-config (.pc) files can be found for GObject-2.0 and the
117 @echo Python interpretor (that was used to build the gobject-introsoection tools)
118 @echo can be found by setting PKG_CONFIG_PATH beforehand, and passing in PYTHON=
119 @echo ^$(PATH_TO_PYTHON_INTERPRETOR) respectively, if python.exe is not already
120 @echo in your PATH.
121 @echo.
122 @echo CAIRO_FT:
123 @echo Enables Cairo-Freetype support, needed for the build of the hb-view utility.
124 @echo Implies FreeType2 support and also requires Cairo built with FreeType2
125 @echo support; GLib2 support must also be enabled.
126 @echo.
127 @echo LIBTOOL_DLL_NAME:
128 @echo Use a libtool-style DLL name to mimic the DLL file naming generated by
129 @echo MinGW builds.
130 @echo.
131 @echo Note that GLib2 support is required for all utility and test programs.
132 @echo ======
133 @echo A 'clean' target is supported to remove all generated files, intermediate
134 @echo object files and binaries for the specified configuration.
135 @echo.
136 @echo A 'tests' target is supported to build the test programs, if GLib2 support
137 @echo is enabled. Use after building the libraries and utilities.
138 @echo.
139 @echo An 'install' target is supported to copy the build (DLLs, utility programs,
140 @echo LIBs, along with the introspection files if applicable) to appropriate
141 @echo locations under ^$(PREFIX).
142 @echo ======
143 @echo.
144