Let's start by introducing several catalogs:
1. System path
System path in VC is "Properties->configuration Properties, VC + + Directories" in "Include directories" the path specified. We can add it here ourselves, can be added in "Include directories", or you can add it in C + +---Additional Include directories
2. Current path
The current path refers to the path where the project file is located in the VC project, i.e. the path where the. dsw file resides.
Example:
1. #include <file.h>
When the VC executes this instruction, it will only find the File.h file in the system directory.
2. #include "file.h"
When the VC executes this instruction, it first searches the system path and, if not, searches the current path.
ref:http://blog.csdn.net/zlwzlwzlw/article/details/4955560
Library
Linker--> General--Additional Library directory, select the directory where Lib resides
Also must be in linker--> Input-to-Additional Dependencies, fill in the Lib name, one per line.
P.s
It is best to put the Include files (header files) and Lib files (library files) in the project directory, to facilitate the subsequent migration
Visual Studio C + + include and library