mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-27 23:23:49 +02:00
19 lines
333 B
ObjectPascal
19 lines
333 B
ObjectPascal
{skip}
|
|
program compile_upi;
|
|
|
|
uses
|
|
Math ,
|
|
SysUtils ,
|
|
Carbon ,
|
|
ImageCompression ,
|
|
QuickTimeComponents ;
|
|
|
|
BEGIN
|
|
writeln('For compilation of AggPas on Mac we need the following units:' );
|
|
writeln(' Math' );
|
|
writeln(' SysUtils' );
|
|
writeln(' Carbon' );
|
|
writeln(' ImageCompression' );
|
|
writeln(' QuickTimeComponents' );
|
|
|
|
END. |