aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/lib/PngImage/lazarustest.lpr
blob: f567b6cbe3917d9f3828b977d09e42412739582e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
program lazarustest;

uses
  pngimage in 'pngimage.pas',
  pnglang  in 'pnglang.pas',
  pngzlib  in 'pngzlib.pas',
  sysutils;

begin
  writeln( 'pngimage is NOT lazarus compatible' );
  writeln( 'It might compile ( not link though ), however the object files are in borland obj format' );
  writeln( 'to use this, it will need to be in GCC object file format format' );
  writeln( 'Or we can use the lazarus / freepascal png unit' );
end.