First, I would like to thank my predecessors. I finally understand that there must be a grateful heart. Open source is a correct belief I believe in. No wonder the MIT protocol is famous, although I didn't read the details of it. But we all know why it exists.
1. Error: $ (ProjectDir ).. \ Resources \ and then changed to correct $ (ProjectDir ).. \ Resources \ reason: $ (ProjectDir) already comes with \, and this path corresponds. the directory where vcxproj is located.
The paths such as the library, header file, debugging, resource, input, intermediate, and target of VS are too scattered, so the VC ++ directory is available. Generally, this path is better configured for project settings, so that project modifications are not dispersed. However, the old project has not followed the standard and should be reorganized later. It is best to create a 2012 or 2013 project directly and put it on git for management.
2. The Executable file directory is the production directory path Executable Directories
3. Include Directory (Include Directories)
4. Should the Reference Directories point to the referenced executable file or project path to be continued ??
5. Library Directory (Library Directories): The lib Library points to the path.
6. Library WinRT Directories: dll dynamic Library path. If necessary, include system32 or SysW0W64.
7. Source Directories. To be continued, I think it is the Source code corresponding to the lib library or it can be the Source code path of the project.
Summary: In fact, if you want to complete the project design on the windows platform, you can directly set these items. You can set the resource path if necessary. However, the cross-platform issue and the. so issue remain to be resolved.
I hope some of you can leave a message for me to share with me.
Freeglut source code management.