I downloaded the current windows branch of caffe and used it successfully with the command line interface.
However, I would like to compile it as a library (static or dynamic) and use it in an other Visual Studio project. The aim here is to call routines to train, test and apply a net.
I'm pretty unsure how to correctly import the caffe library to my own Visual Studio project and how to handle the dependencies. If I add all dependencies like boost, glog etc. manually to my project, I'm at least able to compile it. As soon as I add any caffe-related code (e.g. "caffe::SolverParameter solver_param;"), I get linker errors (LNK2019).
Did anyone managed to use caffe as a library on Windows and could point me out the important steps?