diff --git a/TextSuite.lpk b/TextSuite.lpk new file mode 100644 index 0000000..abc40dd --- /dev/null +++ b/TextSuite.lpk @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TextSuite.pas b/TextSuite.pas new file mode 100644 index 0000000..23ccb24 --- /dev/null +++ b/TextSuite.pas @@ -0,0 +1,23 @@ +{ This file was automatically created by Lazarus. Do not edit! + This source is only used to compile and install the package. + } + +unit TextSuite; + +{$warn 5023 off : no warning about unused units} +interface + +uses + utsChar, utsCharCache, utsCodePages, utsConstants, utsContext, utsFont, utsFontCreator, utsFontCreatorFreeType, + utsFontCreatorGDI, utsFreeType, utsGDI, utsImage, utsOpenGLUtils, utsPostProcessor, utsRenderer, utsRendererOpenGL, + utsRendererOpenGLES, utsTextBlock, utsTextSuite, utsTypes, utsUtils, LazarusPackageIntf; + +implementation + +procedure Register; +begin +end; + +initialization + RegisterPackage('TextSuite', @Register); +end.