views:

206

answers:

1

In GCC you can use the '-include ' flag to automatically include a file in the compilation unit. Is there any equivalent method for this in MSVC?

+3  A: 

In VS, you'll find it as: "Forced Include Files". The tag is /FI

Dave Gamble