mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-02 09:03:41 +02:00
19 lines
309 B
ObjectPascal
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.
|
|
|