I am working on a Visual Studio 2013 project and would like to link it to a library that uses CMake to generate a build configuration. For example:
project
|-> src
|-> project.sln
|-> dep
|-> library
|-> src
|-> CMakeLists.txt
Is there a way to configure, build, and link my library to my project when I build the project in Visual Studio?
I would like to eventually make the whole project a CMake project and generate a comprehensive Visual Studio solution, but it is currently quite large and complicated. With limited time, I'm wondering what my best option is. Is there a clean way to do this with VS Custom Build commands?