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

编辑器/阅读器

开发平台:

C/C++

  1. /* 
  2.     env-sled.lnt:  environment options for Visual Slick Edit
  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 edit project option from
  9.        the project menu source.  In order to set up lint, click on
  10.        the Edit Settings button.
  11.        a) at the Include directory place either the path or the
  12.   include environment variable which contains the path to
  13.           your header files.  for example
  14.             %(INCLUDE)
  15.           or
  16.     c:compilerinclude
  17.        b) at compile text box enter the following
  18.  
  19.     lint -ic:lint std.lnt %f
  20.  
  21.   Replace "c:lint" by the appropriate lint directory if
  22.   necessary.  Ensure the capture output check box is checked
  23.   (recommended); also, ensure the concur process check box
  24.   is checked.
  25.     PC-lint is now able to be invoked as you would a compiler;
  26.     just select the compile option from the project menu.
  27. */
  28. -"format=%(%f %l %)error %n: (%t -- %m)"     //  Messages will contain
  29.     //  file information (%f), the line number (%l), the
  30. //  message number (%n), message type (%t) and message text (%m).
  31.     //  Notice that all messages are labeled 'error' but are then
  32.     //  followed by a type (such as Warning, Info, Note, etc.)
  33. -hF2    //  Make sure we ALWAYS provide file information ('F') and use 2
  34. //  lines (line in error plus message).
  35. -width(0) //  don't break messages at any particular width