Edit

kc3-lang/ftgl/src/Makefile.am

Branch :

  • Show log

    Commit

  • Author : sammy
    Date : 2008-05-01 09:31:27
    Hash : fa7d0739
    Message : * Mass consistency renaming: the fonts' "FTGL" prefix is dropped in favour of "FT" because all other types use only the latter. * Rename "Extrd" types to "Extrude" because the former doesn't really make much sense. * Added appropriate #defines so that legacy applications still build.

  • src/Makefile.am
  • lib_LTLIBRARIES = libftgl.la
    
    libftgl_la_SOURCES = \
        FTCharmap.cpp \
        FTCharmap.h \
        FTCharToGlyphIndexMap.h \
        FTContour.cpp \
        FTContour.h \
        FTFace.cpp \
        FTFace.h \
        FTGlyphContainer.cpp \
        FTGlyphContainer.h \
        FTInternals.h \
        FTLibrary.cpp \
        FTLibrary.h \
        FTList.h \
        FTPoint.cpp \
        FTSize.cpp \
        FTSize.h \
        FTVector.h \
        FTVectoriser.cpp \
        FTVectoriser.h \
        $(ftglyph_sources) \
        $(ftfont_sources) \
        $(ftlayout_sources) \
        $(ftgl_headers) \
        $(NULL)
    libftgl_la_CPPFLAGS = -IFTGlyph -IFTFont -IFTLayout
    libftgl_la_CXXFLAGS = $(FT2_CFLAGS) $(GL_CFLAGS)
    libftgl_la_LDFLAGS = \
            $(FT2_LIBS) $(GL_LIBS) -no-undefined -version-number @LT_VERSION@
    
    ftgldir = $(includedir)/FTGL
    ftgl_HEADERS = $(ftgl_headers)
    
    ftgl_headers = \
        FTGL/ftgl.h \
        FTGL/FTBBox.h \
        FTGL/FTPoint.h \
        FTGL/FTGlyph.h \
        FTGL/FTBitmapGlyph.h \
        FTGL/FTExtrdGlyph.h \
        FTGL/FTOutlineGlyph.h \
        FTGL/FTPixmapGlyph.h \
        FTGL/FTPolyGlyph.h \
        FTGL/FTTextureGlyph.h \
        FTGL/FTFont.h \
        FTGL/FTGLBitmapFont.h \
        FTGL/FTGLExtrdFont.h \
        FTGL/FTGLOutlineFont.h \
        FTGL/FTGLPixmapFont.h \
        FTGL/FTGLPolygonFont.h \
        FTGL/FTGLTextureFont.h \
        FTGL/FTLayout.h \
        FTGL/FTSimpleLayout.h \
        ${NULL}
    
    ftglyph_sources = \
        FTGlyph/FTGlyph.cpp \
        FTGlyph/FTGlyphImpl.h \
        FTGlyph/FTGlyphGlue.cpp \
        FTGlyph/FTBitmapGlyph.cpp \
        FTGlyph/FTBitmapGlyphImpl.h \
        FTGlyph/FTExtrudeGlyph.cpp \
        FTGlyph/FTExtrudeGlyphImpl.h \
        FTGlyph/FTOutlineGlyph.cpp \
        FTGlyph/FTOutlineGlyphImpl.h \
        FTGlyph/FTPixmapGlyph.cpp \
        FTGlyph/FTPixmapGlyphImpl.h \
        FTGlyph/FTPolygonGlyph.cpp \
        FTGlyph/FTPolygonGlyphImpl.h \
        FTGlyph/FTTextureGlyph.cpp \
        FTGlyph/FTTextureGlyphImpl.h \
        $(NULL)
    
    ftfont_sources = \
        FTFont/FTFont.cpp \
        FTFont/FTFontImpl.h \
        FTFont/FTFontGlue.cpp \
        FTFont/FTBitmapFont.cpp \
        FTFont/FTBitmapFontImpl.h \
        FTFont/FTExtrudeFont.cpp \
        FTFont/FTExtrudeFontImpl.h \
        FTFont/FTOutlineFont.cpp \
        FTFont/FTOutlineFontImpl.h \
        FTFont/FTPixmapFont.cpp \
        FTFont/FTPixmapFontImpl.h \
        FTFont/FTPolygonFont.cpp \
        FTFont/FTPolygonFontImpl.h \
        FTFont/FTTextureFont.cpp \
        FTFont/FTTextureFontImpl.h \
        $(NULL)
    
    ftlayout_sources = \
        FTLayout/FTLayout.cpp \
        FTLayout/FTLayoutImpl.h \
        FTLayout/FTLayoutGlue.cpp \
        FTLayout/FTSimpleLayout.cpp \
        FTLayout/FTSimpleLayoutImpl.h \
        $(NULL)
    
    NULL =