Reputation: 3245
I'm new to C++ and want to compile PCL example I installed VS 2010 and Netbeans 7 but could not compile it ! Is the re a better IDE for cMake ?
The code has CMakeLists.txt file.
What should I do ?
These are source files : https://github.com/PointCloudLibrary/pcl/tree/master/apps/cloud_composer
Upvotes: 0
Views: 714
Reputation: 1805
If you are new to:
Then I would advice you to start with the prebuild binaries from PCL. You can find them from: Prebuild windows PCL binaries . Probably best to select the 32-bit anyhow, even if you have a 64-bits windows. If 64-bits is needed later, you can install that prebuild binary.
After installation of the binary and pdb-files, you can start a new project and copy an example from the PCL tutorials. In order to make it build, you need to set up VS2010 correctly. This is explained at: VS2010 configuration for PCL
Upvotes: 1