Visual c++ express 2010... :D Include path and release?
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 mana开发者_高级运维ged 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
- Go to the menu
Project -> MyProject Properties...
- Select the appropriate configuration (relase, debug, etc) in the top-left drop-down
- On the left, navigate to
Configuration Properties -> VC++ Directories
- In the main pane, edit your
Include Directories
as desired
精彩评论