Visualize pointcloud via socket stream

Feel free to ask any question here
Post Reply
t1h
Posts: 1
Joined: Thu Nov 06, 2014 5:09 pm

Visualize pointcloud via socket stream

Post by t1h »

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
daniel
Site Admin
Posts: 7709
Joined: Wed Oct 13, 2010 7:34 am
Location: Grenoble, France
Contact:

Re: Visualize pointcloud via socket stream

Post by daniel »

To include another Qt package, simply edit the 'CMakeExternalLibs.cmake' file in the root folder.

For Qt4

Code: Select all

find_package( Qt4 ${QT_VERSION} COMPONENTS QtMain QtCore ... REQUIRED )
For Qt5 it's slightly easier:

Code: Select all

find_package(Qt5Concurrent REQUIRED)
Daniel, CloudCompare admin
Post Reply