I'm new to working with Visual C++ and I would like to add libclang as a dependency to my project. I have downloaded LLVM and compiled libclang successfully with cmake in a separate directory outside my Visual C++ solution.
I would like copy the compiled libclang artifacts to my solution so I keep them with my project for portability. I am using Visual Studio 2017 currently.
What is the recommended way to include the libclang artifacts in my project and mark them as dependencies so I can access those libraries in my code?