1

Windows 10 Visual Studio 14

I am trying to build a c++ code based on this github repository. However, when I try to generate lib files in Cmake I get this error:

enter image description here

How can I make it recognize LMDB, GFALGS, and GLOG?

Hadi GhahremanNezhad
  • 2,377
  • 5
  • 29
  • 58

1 Answers1

0

Apparently I'm not allowed to comment yet, but I would like to point you to the documentation: FindHDF5.

I can't find anything about HDF5_DIR but I did find HDF5_ROOT.

HDF5_ROOT

Specify the path to the HDF5 installation to use.

  • 1
    Thanks. I configured again and the error changed to LMDB. – Hadi GhahremanNezhad Oct 17 '18 at 13:29
  • 1
    Just follow the same pattern, look for Find*.cmake module in that gitrep and specify the needed flags. For the above example it's already specifying that you want to set **GFLAGS_ROOT_DIR** and **GLOG_ROOT_DIR** to the root directories of those packages. – Arubertoson Oct 18 '18 at 07:50