env-sl3.lnt
上传用户:filter2008
上传日期:2010-03-12
资源大小:2959k
文件大小:2k
源码类别:

编辑器/阅读器

开发平台:

C/C++

  1. /* 
  2.     env-sled3.lnt:  environment options for Visual Slick Edit version 3.0+
  3.     If you are using the visual slick edit editor and you wish to invoke
  4.     PC-lint from that environment then do the following.
  5.     1) create a new project by selecting the new/open option
  6.        from the project menu.  type lint.vpj at the filename and
  7.        click on NEW
  8.     2) edit the project by selecting the Project Properties option from
  9.        the Project menu.  In order to set up PC-lint for C/C++,
  10.        a) Click on the "Directories" tab.  To change the Include directory 
  11.   place either the path or the include environment variable which 
  12.   contains the path to header files.  for example
  13.             %(INCLUDE)
  14.           or
  15.     c:compilerinclude
  16.        b) at compile text box enter the following
  17.  
  18.     lint -ic:lint std.lnt %f
  19.  
  20.   Replace "c:lint" by the appropriate lint directory if
  21.   necessary.  Ensure the capture output check box is checked
  22.   (recommended).
  23.     PC-lint is now able to be invoked as you would a compiler;
  24.     just select the compile option from the project menu.
  25. */
  26. -"format=%(%f %l %)error %n: (%t -- %m)"     //  Messages will contain
  27.     //  file information (%f), the line number (%l), the
  28. //  message number (%n), message type (%t) and message text (%m).
  29.     //  Notice that all messages are labeled 'error' but are then
  30.     //  followed by a type (such as Warning, Info, Note, etc.)
  31. -hF2    //  Make sure we ALWAYS provide file information ('F') and use 2
  32. //  lines (line in error plus message).
  33. -width(0) //  don't break messages at any particular width