rahulthewall
rahulthewall

Reputation: 795

How to use cscope in Visual Studio?

I am working with Visual Studio (2008 edition) for the first time. Used to programming in a Unix environment, I have become quite used to cscope and vim. For my current project, I really need cscope. I was wondering if there is any way I could use cscope on Visual Studio - or use cscope in Windows. Or if there is another tool which does this job.

Upvotes: 3

Views: 3935

Answers (2)

AndrejaKo
AndrejaKo

Reputation: 1749

You could try windows version of cscope.

As far as Visual Studio is concerned, I haven't seen anything as powerful as cscope in it.

Upvotes: 0

idbrii
idbrii

Reputation: 11916

The only way I found to install cscope on Windows was the mlcscope package in cygwin. With that, you could just use vim with Visual Studio.

As far as finding API functions in Visual Studio, you should be able to add the headers to your project so they're indexed by Intellisense.

Upvotes: 0

Related Questions