I know that I can use this pragma to add a library into a project:
#pragma comment(lib, "opencv_calib3d246d.lib")
This allow me to create a include file and when it is added to a project, it includes all libraries to that project (in this case, opencv libraries).
Is there any other #pragma that I can use to set the include path or library search path?
I am suing visual studio 2012.