Error Parser with eclipse ? How to use cuda compiler with eclipse

I try to use eclipse for CUDA development. I successfully setup eclipse so that I can compile and debug cuda program in eclipse and syntax highlight of course. However, there is still one issue that is the error format of CUDA is a little bit different from the standard GNU C++. for example

GNUC++
…/src/MVProd.cpp:48: warning: deprecated conversion from string constant to ‘char*’

CUDA
…/src/MVProd.cpp(48): warning: deprecated conversion from string constant to ‘char*’

So i can not use the default error parser from eclipse. I wonder if some one have the customized error parser for CUDA to use with eclipse. That will be a great future for CUDA development in eclipse

Thank you with your help,