Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lazarus / usr / share / lazarus / 1.6 / components / aggpas / compile_upi.dpr
Size: Mime:
{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.