views:

44

answers:

1

Hello,

I have written the majority of my project in C++. However there are several "filters" or folders which need to be compiled as C and linked to the project. How can I configure this within VStudio? Thanks.

+1  A: 

You can change the Language property by right-clicking on the individual files and setting Configuration Properties > C/C++ > Advanced > Compile As To Compile As C (/TC). No such facility for the filter are present though.

dirkgently
Thankyou dirkgently.
Hugh