I am adding ACE TAO to my existing project, and I have compile errors after adding the projects. Most of the errors were "No such file or directory", and these errors can simply be fixed by changing the patch of the #include, but there are thousands of them, and I am thinking I must have done something wrong on my end.
For example, in ace/Assert.h, it has
#include ace/pre.h
#include ace/ACE_export.h
#include ace/config-all.h
but Assert.h is also in the ace directory. These type of errors are every where in the ACE TAO project, am I doing something wrong? or do I just need to fix the #include paths manually?
For "No such file or directory" you should add the file path:
Since you have other errors, I guess you may not have installed the Windows SDK for the corresponding operating system, you could install it in the visual studio installer.
If the program has other errors, please upload the relevant details.