Compiles now on Windows, but with issue: .lib and .dll files are copied to the wrong path's causing following issue when importing the module in python:
"ImportError: DLL load failed while importing _pyvicon_datastream_wrapper: Module not found."
Fix: Move them manually to module's folder:
- (venv)/bin/ViconDataStreamSDK_CPP.dll => (venv)/Lib/site-packages/pyvicon_datastream/Lib/ViconDataStreamSDK_CPP.dll
- (venv)/Lib/ViconDataStreamSDK_CPP.lib => (venv)/Lib/site-packages/pyvicon_datastream/Lib/ViconDataStreamSDK_CPP.lib (create a folder Lib inside pyvicon_datastream)