🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

250 lines
6.3 KiB

  1. # modules.cfg
  2. #
  3. # Copyright (C) 2005-2021 by
  4. # David Turner, Robert Wilhelm, and Werner Lemberg.
  5. #
  6. # This file is part of the FreeType project, and may only be used, modified,
  7. # and distributed under the terms of the FreeType project license,
  8. # LICENSE.TXT. By continuing to use, modify, or distribute this file you
  9. # indicate that you have read the license and understand and accept it
  10. # fully.
  11. #
  12. #
  13. # In case you compile the FreeType library with GNU make or makepp, this
  14. # file controls which components are built into the library. Otherwise,
  15. # please read this file for information on the various modules and its
  16. # dependencies, then follow the instructions in the file `docs/INSTALL.ANY'.
  17. #
  18. # To deactivate a module, simply comment out the corresponding line. To
  19. # activate a module, remove the comment character.
  20. #
  21. # Note that many modules and components are further controlled with macros
  22. # in the file `include/freetype/config/ftoption.h'.
  23. ####
  24. #### font modules -- at least one is required
  25. ####
  26. #### The order given here (from top to down) is the order used for testing
  27. #### font formats in the compiled library.
  28. ####
  29. # TrueType font driver.
  30. #
  31. # This driver needs the `sfnt' module.
  32. FONT_MODULES += truetype
  33. # PostScript Type 1 font driver.
  34. #
  35. # This driver needs the `psaux', `pshinter', and `psnames' modules.
  36. FONT_MODULES += type1
  37. # CFF/OpenType font driver.
  38. #
  39. # This driver needs the `sfnt', `psaux', `pshinter', and `psnames' modules.
  40. FONT_MODULES += cff
  41. # Type 1 CID-keyed font driver.
  42. #
  43. # This driver needs the `psaux', `pshinter', and `psnames' modules.
  44. FONT_MODULES += cid
  45. # PFR/TrueDoc font driver. See optional extension ftpfr.c below also.
  46. FONT_MODULES += pfr
  47. # PostScript Type 42 font driver.
  48. #
  49. # This driver needs the `truetype' and `psaux' modules.
  50. FONT_MODULES += type42
  51. # Windows FONT/FNT font driver. See optional extension ftwinfnt.c below
  52. # also.
  53. FONT_MODULES += winfonts
  54. # PCF font driver. If debugging and tracing is enabled, needs `ftbitmap.c'.
  55. FONT_MODULES += pcf
  56. # BDF font driver. See optional extension ftbdf.c below also.
  57. FONT_MODULES += bdf
  58. # SFNT files support. If used without `truetype' or `cff', it supports
  59. # bitmap-only fonts within an SFNT wrapper.
  60. #
  61. # This driver needs the `psnames' module.
  62. FONT_MODULES += sfnt
  63. ####
  64. #### hinting modules
  65. ####
  66. # FreeType's auto hinter.
  67. HINTING_MODULES += autofit
  68. # PostScript hinter.
  69. HINTING_MODULES += pshinter
  70. # The TrueType hinting engine doesn't have a module of its own but is
  71. # controlled in file include/freetype/config/ftoption.h
  72. # (TT_CONFIG_OPTION_BYTECODE_INTERPRETER and friends).
  73. ####
  74. #### raster modules -- at least one is required for vector font formats
  75. ####
  76. # Anti-aliasing rasterizer.
  77. RASTER_MODULES += smooth
  78. # Monochrome rasterizer.
  79. RASTER_MODULES += raster
  80. # Signed distance field rasterizer.
  81. RASTER_MODULES += sdf
  82. ####
  83. #### auxiliary modules
  84. ####
  85. # FreeType's cache sub-system (quite stable but still in beta -- this means
  86. # that its public API is subject to change if necessary). See
  87. # include/freetype/ftcache.h. Needs `ftglyph.c'.
  88. AUX_MODULES += cache
  89. # TrueType GX/AAT table validation. Needs `ftgxval.c' below.
  90. #
  91. # AUX_MODULES += gxvalid
  92. # Support for streams compressed with gzip (files with suffix .gz).
  93. #
  94. # See include/freetype/ftgzip.h for the API.
  95. AUX_MODULES += gzip
  96. # Support for streams compressed with LZW (files with suffix .Z).
  97. #
  98. # See include/freetype/ftlzw.h for the API.
  99. AUX_MODULES += lzw
  100. # Support for streams compressed with bzip2 (files with suffix .bz2).
  101. #
  102. # See include/freetype/ftbzip2.h for the API.
  103. AUX_MODULES += bzip2
  104. # OpenType table validation. Needs `ftotval.c' below.
  105. #
  106. # AUX_MODULES += otvalid
  107. # Auxiliary PostScript driver component to share common code.
  108. #
  109. # This module depends on `psnames'.
  110. AUX_MODULES += psaux
  111. # Support for PostScript glyph names.
  112. #
  113. # This module can be controlled in ftconfig.h
  114. # (FT_CONFIG_OPTION_POSTSCRIPT_NAMES).
  115. AUX_MODULES += psnames
  116. ####
  117. #### base module extensions
  118. ####
  119. # Exact bounding box calculation.
  120. #
  121. # See include/freetype/ftbbox.h for the API.
  122. BASE_EXTENSIONS += ftbbox.c
  123. # Access BDF-specific strings. Needs BDF font driver.
  124. #
  125. # See include/freetype/ftbdf.h for the API.
  126. BASE_EXTENSIONS += ftbdf.c
  127. # Utility functions for converting 1bpp, 2bpp, 4bpp, and 8bpp bitmaps into
  128. # 8bpp format, and for emboldening of bitmap glyphs.
  129. #
  130. # See include/freetype/ftbitmap.h for the API.
  131. BASE_EXTENSIONS += ftbitmap.c
  132. # Access CID font information.
  133. #
  134. # See include/freetype/ftcid.h for the API.
  135. BASE_EXTENSIONS += ftcid.c
  136. # Access FSType information. Needs `fttype1.c'.
  137. #
  138. # See include/freetype/freetype.h for the API.
  139. BASE_EXTENSIONS += ftfstype.c
  140. # Support for GASP table queries.
  141. #
  142. # See include/freetype/ftgasp.h for the API.
  143. BASE_EXTENSIONS += ftgasp.c
  144. # Convenience functions to handle glyphs. Needs `ftbitmap.c'.
  145. #
  146. # See include/freetype/ftglyph.h for the API.
  147. BASE_EXTENSIONS += ftglyph.c
  148. # Interface for gxvalid module.
  149. #
  150. # See include/freetype/ftgxval.h for the API.
  151. BASE_EXTENSIONS += ftgxval.c
  152. # Multiple Master font interface.
  153. #
  154. # See include/freetype/ftmm.h for the API.
  155. BASE_EXTENSIONS += ftmm.c
  156. # Interface for otvalid module.
  157. #
  158. # See include/freetype/ftotval.h for the API.
  159. BASE_EXTENSIONS += ftotval.c
  160. # Support for FT_Face_CheckTrueTypePatents.
  161. #
  162. # See include/freetype/freetype.h for the API.
  163. BASE_EXTENSIONS += ftpatent.c
  164. # Interface for accessing PFR-specific data. Needs PFR font driver.
  165. #
  166. # See include/freetype/ftpfr.h for the API.
  167. BASE_EXTENSIONS += ftpfr.c
  168. # Path stroker. Needs `ftglyph.c'.
  169. #
  170. # See include/freetype/ftstroke.h for the API.
  171. BASE_EXTENSIONS += ftstroke.c
  172. # Support for synthetic emboldening and slanting of fonts. Needs
  173. # `ftbitmap.c'.
  174. #
  175. # See include/freetype/ftsynth.h for the API.
  176. BASE_EXTENSIONS += ftsynth.c
  177. # Interface to access data specific to PostScript Type 1 and Type 2 (CFF)
  178. # fonts.
  179. #
  180. # See include/freetype/t1tables.h for the API.
  181. BASE_EXTENSIONS += fttype1.c
  182. # Interface for accessing data specific to Windows FNT files. Needs winfnt
  183. # driver.
  184. #
  185. # See include/freetype/ftwinfnt.h for the API.
  186. BASE_EXTENSIONS += ftwinfnt.c
  187. ####
  188. #### The components `ftsystem.c' (for memory allocation and stream I/O
  189. #### management) and `ftdebug.c' (for emitting debug messages to the user)
  190. #### are controlled with the following variables.
  191. ####
  192. #### ftsystem.c: $(FTSYS_SRC)
  193. #### ftdebug.c: $(FTDEBUG_SRC)
  194. ####
  195. #### Please refer to docs/CUSTOMIZE for details.
  196. ####
  197. # EOF