I tried compiling as-is following the instructions in the readme, and it was having trouble finding some of the open MP dependencies. I looked in the CMake list and found some things commented out, so I uncommented them. This caused a new error, FindOpenMP requires C or CXX language to be enabled. I googled it and found https://stackoverflow.com/questions/49937059/findopenmp-requires-c-or-cxx-language-to-be-enabled-error-on-ubuntu-16-04-and-c
Moving the project declaration to the top fixed the problem.
I am not a CMake expert by any means, so I am not sure if this is specific to my environment or not (I happen to be using one of the vg docker build images just now), but thought I would submit my fix in case it is relevant to others.
I tried compiling as-is following the instructions in the readme, and it was having trouble finding some of the open MP dependencies. I looked in the CMake list and found some things commented out, so I uncommented them. This caused a new error,
FindOpenMP requires C or CXX language to be enabled
. I googled it and found https://stackoverflow.com/questions/49937059/findopenmp-requires-c-or-cxx-language-to-be-enabled-error-on-ubuntu-16-04-and-c Moving the project declaration to the top fixed the problem. I am not a CMake expert by any means, so I am not sure if this is specific to my environment or not (I happen to be using one of the vg docker build images just now), but thought I would submit my fix in case it is relevant to others.