I've got a c++ project set up in CLion that uses CMake. I am using various 3rd party libraries and would like to also integrate Tensorflow.
I've tried bazel to compile Tensorflow to a shared library libtensorflow.so
which kind of worked however there are still quite a few dependencies (e.g. to a current protobuf version and once I do that there are more) that I'd have to fix.
Is there a way to use the standard Tensorflow git repository and somehow link the libraries that are pre-compiled for python usage? Or is there another convenient way?
Tensorflow in Python works well for me.