lazarus/components/cairocanvas/cairocanvasall.pas
mattias 975a35dc8a cairocanvas: fixed compilation under fpc 2.7+ windows
git-svn-id: branches/fixes_1_4@48249 -
2015-03-10 21:06:03 +00:00

19 lines
309 B
ObjectPascal

{ The CairoCanvas package can be compiled on all platforms.
This unit defines what units are available on which platform.
}
unit CairoCanvasAll;
{$mode objfpc}{$H+}
interface
{$IF (FPC_FULLVERSION>=20701) or not defined(win64)}
uses
{%H-}CairoCanvas, {%H-}CairoPrinter;
{$ENDIF}
implementation
end.