I am working on a data management project which periodically deletes files in a particular folder. There are three projects in the solution, one of which is the application and the other two are static libraries. Now I want to add another project which is a stable library used for logging. The logging static library project contains the header file, which refers to the application project. When I create a solution, I am getting the error because the header file is not found when I added the Logging Static Library Project, I also tested the appropriate beaks in Project Dependency and made a dependent application project. Can anybody help me please?
An additional file path is required to reference the header file directory.
Project-> Properties-> Config Property-> C / C ++ -> Include Additional Directories
This header does not automatically take the file path, it just knows that How to link to the project ... its completely undefined where the header file should be. Or even if you have a header file, you can refer to this in another project if you wish!
Comments
Post a Comment