libpng.icc
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:1k
源码类别:

界面编程

开发平台:

Visual C++

  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. option incl(searchpath, "../zlib"), opt(level, "2"),
  12.  link(libsearchpath, "../zlib")
  13. {
  14.    target type(lib) "libpng.lib"
  15.    {
  16.       source type(c) "png.c"
  17.       source type(c) "pngerror.c"
  18.       source type(c) "pngget.c"
  19.       source type(c) "pngmem.c"
  20.       source type(c) "pngpread.c"
  21.       source type(c) "pngread.c"
  22.       source type(c) "pngrio.c"
  23.       source type(c) "pngrtran.c"
  24.       source type(c) "pngrutil.c"
  25.       source type(c) "pngset.c"
  26.       source type(c) "pngtrans.c"
  27.       source type(c) "pngwio.c"
  28.       source type(c) "pngwrite.c"
  29.       source type(c) "pngwtran.c"
  30.       source type(c) "pngwutil.c"
  31.    }
  32. }
  33. option incl(searchpath, "../zlib"), opt(level, "2"),
  34.  link(libsearchpath, "../zlib")
  35. {
  36.    target type(exe) "pngtest.exe"
  37.    {
  38.       source type(c) "pngtest.c"
  39.       source type(lib) "libpng.lib"
  40.       source type(lib) "zlib.lib"
  41.    }
  42. }