
Hi! I've cloned OpenMesh git repo to my local. created a build directory under it. there I called following CMake command for release mode without applications) ``` cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_APPS=OFF ``` I'm getting following errors: ``` CMake Error at CMakeLists.txt:44 (include): include could not find requested file: VCICommon CMake Error at src/OpenMesh/Core/CMakeLists.txt:1 (include): include could not find requested file: VCICommon CMake Error at src/OpenMesh/Core/CMakeLists.txt:145 (vci_add_library): Unknown CMake command "vci_add_library". ``` Looks like it needs `vci_add_library` Cmake function that is defined in `VCICommon`. But I don't see VCICommon anywhere in the repo. From https://gitlab.vci.rwth-aachen.de:9000/search?search=VCICommon&nav_source=navbar&project_id=1&group_id=3&search_code=true&repository_ref=master as you can see, VCICommon is only included in the repo, not defined anywhere. Can you please tell me what I am doing wrong. Thanks!