url-kaist / patchwork-plusplus

Patchwork++: Fast and robust ground segmentation method for 3D LiDAR scans. @ IROS'22
GNU General Public License v3.0
668 stars 105 forks source link

Support sudo make install #50

Closed LimHyungTae closed 5 months ago

LimHyungTae commented 5 months ago

Support sudo make install to install the patchworkpp package in the local environment (9c66c01).

Without patchwork directory, the patchworkpp.h goes to the following directory: -- Installing: /usr/local/include/patchworkpp.h , which lead to an a bit ambiguous include command in another package as follows: #include <patchworkpp.h>

So, I add patchwork directory (a6b47ab). By doing so, it goes to -- Up-to-date: /usr/local/include/patchwork/patchworkpp.h

and we can use it as #include <patchwork/patchworkpp.h>

Finally, add another package to demonstrate how to include patchworkpp package in another package (1adebe6)