Hello,
thank you for your helpful application.
I intend to patch ccviewer to open a port to visualize point clouds from stream.
Sadly I don't understand how you use qt within your cmake files and am stuck linking against qtnetwork.
What's a proper way to add the qtnetwork module to your cmake list?
Best,
th
Visualize pointcloud via socket stream
Re: Visualize pointcloud via socket stream
To include another Qt package, simply edit the 'CMakeExternalLibs.cmake' file in the root folder.
For Qt4
For Qt5 it's slightly easier:
For Qt4
Code: Select all
find_package( Qt4 ${QT_VERSION} COMPONENTS QtMain QtCore ... REQUIRED )
Code: Select all
find_package(Qt5Concurrent REQUIRED)
Daniel, CloudCompare admin