source: trunk/src/3rdparty/libpng/scripts/libpng.icc

Last change on this file was 2, checked in by dmik, 20 years ago

Imported xplatform parts of the official release 3.3.1 from Trolltech

File size: 1.4 KB
Line 
1// Project file for libpng (static)
2// IBM VisualAge/C++ version 4.0 or later
3// Copyright (C) 2000 Cosmin Truta
4// For conditions of distribution and use, see copyright notice in png.h
5// Notes:
6// All modules are compiled in C mode
7// Tested with IBM VAC++ 4.0 under Win32
8// Expected to work with IBM VAC++ 4.0 or later under OS/2 and Win32
9// Can be easily adapted for IBM VAC++ 4.0 or later under AIX
10// For conditions of distribution and use, see copyright notice in png.h
11
12option incl(searchpath, "../zlib"), opt(level, "2"),
13 link(libsearchpath, "../zlib")
14{
15 target type(lib) "libpng.lib"
16 {
17 source type(c) "png.c"
18 source type(c) "pngerror.c"
19 source type(c) "pngget.c"
20 source type(c) "pngmem.c"
21 source type(c) "pngpread.c"
22 source type(c) "pngread.c"
23 source type(c) "pngrio.c"
24 source type(c) "pngrtran.c"
25 source type(c) "pngrutil.c"
26 source type(c) "pngset.c"
27 source type(c) "pngtrans.c"
28 source type(c) "pngwio.c"
29 source type(c) "pngwrite.c"
30 source type(c) "pngwtran.c"
31 source type(c) "pngwutil.c"
32 }
33}
34
35option incl(searchpath, "../zlib"), opt(level, "2"),
36 link(libsearchpath, "../zlib")
37{
38 target type(exe) "pngtest.exe"
39 {
40 source type(c) "pngtest.c"
41 source type(lib) "libpng.lib"
42 source type(lib) "zlib.lib"
43 }
44}
Note: See TracBrowser for help on using the repository browser.