In the VS Project, the basic steps for adding external header files and libraries in a C + + project are:
1, add the project header file directory: Project---Properties---configuration properties---c/C + +---General---Additional Include Directories: Plus header file storage directory.
2. The Lib static library path for adding file references: Project---Properties---configuration PROPERTIES---linker---general---Additional Library directories: Plus lib file storage directory.
Then add a project reference to the Lib file name: Project---Properties---configuration PROPERTIES---linker---input---Additional dependencies: Add lib file name.
3. Add the DLL dynamic library referenced by the project: Place the referenced DLL in the same directory as the project's executable file.
Note: The first step can not be used, directly in the project to add the dynamic library header file, in the use of code to reference the file.
cocos2d-x3.2 How to add Lib libraries and header files