My goal is to create a plugin for CloudCompare. My first step was to try building the source code on Windows by following the steps in BUILD.md. I am unable to install Qt from their website because of my company's security so I used conda to install qt and the other dependencies. My conda environment is activated but when I try to build CloudCompare using cmake I get the error:
Code: Select all
Unable to find dependent libraries of C:\Users\ckirby\AppData\Local\miniconda3\envs\cloud-compare\Library\bin\Qt5OpenGL.dll :Cannot open 'C:/Users/ckirby/AppData/Local/miniconda3/envs/cloud-compare/Library/
bin/Qt5OpenGL.dll': The system cannot find the file specified.
When I went to this folder location, I found `Qt5OpenGL_conda.dll` was there, but not `Qt5OpenGL.dll`. I find this curious as I wouldn't expect conda to have anything to do with the qt dlls.
Any ideas on how to effectively build the source code without installing qt from their website?