jamfile

来自「freetype库的应用demo,里面包含freetype的很多实例」· 代码 · 共 57 行

TXT
57
字号
# FreeType2 demo graph Jamfile (c) 2001 David Turner#SubDir  FT2DEMO_TOP graph ;GRAPH_INCLUDE = $(FT2DEMO_GRAPH) ;GRAPH_LIB     = $(LIBPREFIX)graph$(SUFLIB) ;graph_sources = grblit                 grobjs                 grfont                 grdevice                 grinit                gblender                gblblit                ;if $(OS) = BEOS{  DEVICE_DEFINE = -DDEVICE_BEOS ;}else if $(UNIX){  DEVICE_DEFINE = -DDEVICE_X11 ;}else if $(NT){  DEVICE_DEFINE = -DDEVICE_WIN32 ;}else if $(OS2){  DEVICE_DEFINE = -DDEVICE_OS2 ;}CCFLAGS on <graph>grinit$(SUFOBJ) = $(CCFLAGS) $(DEVICE_DEFINE) ;Library  $(GRAPH_LIB) : $(graph_sources).c ;if $(OS) = BEOS{  SubInclude  FT2DEMO_TOP graph beos ;}else if $(UNIX){  SubInclude  FT2DEMO_TOP graph x11 ;}else if $(NT){  SubInclude  FT2DEMO_TOP graph win32 ;}else if $(OS2){  SubInclude  FT2DEMO_TOP graph os2 ;}# end of graph Jamfile

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?