home *** CD-ROM | disk | FTP | other *** search
/ World of Graphics / WOGRAPH.BIN / 332.CLIPPER.TXT < prev    next >
Text File  |  1992-04-09  |  958b  |  32 lines

  1. To compile and link the Clipper IMGDEMO program, do the following:
  2.  
  3. 1. Compile MSCVIS.C and CLIPVIS.C with the Microsoft C compiler
  4.    using the following commands:
  5.  
  6.      cl /c /AL /Gs /FPa /Oalt /Zl MSCVIS.C
  7.      cl /c /AL /Gs /FPa /Oalt /Zl CLIPVIS.C
  8.  
  9.  
  10. 2. Compile the Clipper file IMGDEMO.PRG
  11.  
  12. 3. Link the three object files together. We used the following RTLINK
  13.    response file:
  14.  
  15.                 file imgdemo
  16.                 file clipvis
  17.                 file mscvis
  18.  
  19.                 lib \clipper5\lib\CLIPPER
  20.                 lib \clipper5\lib\EXTEND
  21.                 lib \clipper5\lib\CLD
  22.                 lib \clipper5\lib\DBFNTX
  23.                 lib \clipper5\lib\RTLUTILS
  24.                 lib \clipper5\lib\TERMINAL
  25.                 lib \msc\lib\llibca
  26.  
  27. 4. Start up DIDC3.EXE before running IMGDEMO.EXE.  Be sure to the the
  28.    DIDC environment variable and setup a default volume number (see the
  29.    Visage documentation).
  30.  
  31.  
  32.