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