Reputation: 8970
hope this is not such a stupid question, but I just tried to compile under the "release" configuration a project of mine using Microsoft Visual C++ Express Edition 2010.
I need some files to be included, they are all in a directory, and I'd need to include them using the
#include <myfile>
directive, with angle brackets. I managed to do it in debug mode, but I didn't find out how to do it in release mode..
Thank you very much, again sorry for the very elementary question!
Matteo
Upvotes: 1
Views: 2166
Reputation: 11144
Project -> MyProject Properties...
Configuration Properties -> VC++ Directories
Include Directories
as desiredUpvotes: 1