aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/lib/PngImage/lazarustest.lpr
diff options
context:
space:
mode:
Diffstat (limited to 'Game/Code/lib/PngImage/lazarustest.lpr')
-rw-r--r--Game/Code/lib/PngImage/lazarustest.lpr15
1 files changed, 15 insertions, 0 deletions
diff --git a/Game/Code/lib/PngImage/lazarustest.lpr b/Game/Code/lib/PngImage/lazarustest.lpr
new file mode 100644
index 00000000..f567b6cb
--- /dev/null
+++ b/Game/Code/lib/PngImage/lazarustest.lpr
@@ -0,0 +1,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.
+