BSmith
BSmith

Reputation:

Any MSVC equivalent to GCC '-include' flag?

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?

Upvotes: 1

Views: 901

Answers (1)

Dave Gamble
Dave Gamble

Reputation: 4174

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

Upvotes: 4

Related Questions