mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-06 23:33:37 +02:00
19 lines
299 B
ObjectPascal
19 lines
299 B
ObjectPascal
{ The CairoCanvas package can be compiled on all platforms, except for WinCE.
|
|
This unit defines what units are available on which platform.
|
|
}
|
|
unit CairoCanvasAll;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
{$IF not defined(WinCE)}
|
|
uses
|
|
{%H-}CairoCanvas, {%H-}CairoPrinter;
|
|
{$ENDIF}
|
|
|
|
implementation
|
|
|
|
end.
|
|
|