I want to build OpenFace library in my project, but facing some issues.
What I have done:
- I have cloned OpenFace library from github and put into jhbuild.
I have created
openface.modulesetfile to build the library in my project, but OpenFace don't have aCMakeLists.txtfile. So I'm unable to understand what I have to write in.moduleset fileto build OpenFace library.I have built OpenFace library using
sudo apt-get, followed all command they provide in thair website, built withoutjhbuild, but usingjhbuildI am stuck how can i do it :(.
Problem:
- In OpenFace library there is no cmake file.
- I have made a
.modulesetfile, but how to build OpenFace if the library doesn't provide cmake support, so how can I do it usingsudo aptwithjhbuild. - What I have to write in
.modulesetfile to build library in project usingjhbuild?
Please help !!
I assume you are talking about this OpenFace library: http://cmusatyalab.github.io/openface/
If so, then it is a Python library, built/installed with Distutils.
That's why you can't find a
CMakeLists.txtfile: OpenFace does not use CMake to build.Fortunately, JHBuild is not tied to CMake at all, and it supports Distutils just fine:
https://developer.gnome.org/jhbuild/stable/moduleset-syntax.html.en#moduleset-syntax-defs-distutils
So you would just add something like this to your moduleset file: