Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

vc++ compile error RC : fatal error RC1107: invalid usage; use RC /? for

I am getting following error while building my vc++ project (Using visual studio 2010)

RC : fatal error RC1107: invalid usage; use RC /? for

I know there is some issue while building resources but how to get the exact problem area?

Thanks

like image 793
Rahul Avatar asked Jan 18 '12 14:01

Rahul


1 Answers

Solution: Add a slash to the last include path will do the trick. If your last include path already contain a slash at the end, delete it will also work.

Note: Some other include paths can cause this too; it doesn't have to be the very last include path. In particular, check the last include path that you add (in addition to the built-in ones) in your project/properties file.

like image 89
Mitendra Avatar answered Sep 17 '22 11:09

Mitendra