File tree 11 files changed +39
-41
lines changed
11 files changed +39
-41
lines changed Original file line number Diff line number Diff line change 1
- #Helper library
2
- set (SUBSYS_NAME io_ply)
3
- set (SUBSYS_DESC "Point cloud IO ply library" )
4
- set (SUBSYS_DEPS common)
5
- set (SUBSYS_EXT_DEPS boost eigen3)
6
-
7
- set (PLY_SOURCES src/ply/ply_parser.cpp)
8
- set (PLY_INCLUDES
9
- "include/pcl/io/ply/byte_order.h"
10
- "include/pcl/io/ply/io_operators.h"
11
- "include/pcl/io/ply/ply.h"
12
- "include/pcl/io/ply/ply_parser.h"
13
- )
14
-
15
- PCL_SUBSYS_OPTION(build "${SUBSYS_NAME} " "${SUBSYS_DESC} " ON )
16
- PCL_SUBSYS_DEPEND(build NAME ${SUBSYS_NAME} DEPS ${SUBSYS_DEPS} EXT_DEPS ${EXT_DEPS} )
17
-
18
- if (build )
19
- set (LIB_NAME "pcl_${SUBSYS_NAME} " )
20
- PCL_ADD_LIBRARY(${LIB_NAME} COMPONENT ${SUBSYS_NAME} SOURCES ${PLY_SOURCES} ${PLY_INCLUDES} )
21
- if (MINGW)
22
- # libws2_32 isn't added by default for MinGW
23
- target_link_libraries (${LIB_NAME} ws2_32)
24
- endif ()
25
- PCL_ADD_INCLUDES("${SUBSYS_NAME} " "${SUBSYS_NAME} /ply" ${PLY_INCLUDES} )
26
-
27
- target_link_libraries (${LIB_NAME} pcl_common Boost::boost)
28
- endif ()
29
- unset (build )
30
-
31
- # Main IO Library
32
-
33
1
set (SUBSYS_NAME io)
34
2
set (SUBSYS_DESC "Point cloud IO library" )
35
- set (SUBSYS_DEPS common octree)
3
+ set (SUBSYS_DEPS common io_ply octree)
36
4
set (SUBSYS_EXT_DEPS boost eigen3)
37
5
38
6
PCL_SUBSYS_OPTION(build "${SUBSYS_NAME} " "${SUBSYS_DESC} " ON )
Original file line number Diff line number Diff line change 43
43
#include < pcl/pcl_macros.h>
44
44
#include < pcl/common/io.h> // for copyPointCloud
45
45
#include < pcl/io/file_io.h>
46
- #include < pcl/io/ply /ply_parser.h>
46
+ #include < pcl/io_ply /ply_parser.h>
47
47
#include < pcl/PolygonMesh.h>
48
48
49
49
#include < sstream>
Original file line number Diff line number Diff line change
1
+ #Helper library
2
+ set (SUBSYS_NAME io_ply)
3
+ set (SUBSYS_DESC "Point cloud IO ply library" )
4
+ set (SUBSYS_DEPS common)
5
+ set (SUBSYS_EXT_DEPS boost eigen3)
6
+
7
+ set (PLY_SOURCES src/ply_parser.cpp)
8
+ set (PLY_INCLUDES
9
+ "include/pcl/io_ply/byte_order.h"
10
+ "include/pcl/io_ply/io_operators.h"
11
+ "include/pcl/io_ply/ply.h"
12
+ "include/pcl/io_ply/ply_parser.h"
13
+ )
14
+
15
+ PCL_SUBSYS_OPTION(build "${SUBSYS_NAME} " "${SUBSYS_DESC} " ON )
16
+ PCL_SUBSYS_DEPEND(build NAME ${SUBSYS_NAME} DEPS ${SUBSYS_DEPS} EXT_DEPS ${EXT_DEPS} )
17
+
18
+ if (NOT build )
19
+ return ()
20
+ endif ()
21
+
22
+ set (LIB_NAME "pcl_${SUBSYS_NAME} " )
23
+ PCL_ADD_LIBRARY(${LIB_NAME} COMPONENT ${SUBSYS_NAME} SOURCES ${PLY_SOURCES} ${PLY_INCLUDES} )
24
+ if (MINGW)
25
+ # libws2_32 isn't added by default for MinGW
26
+ target_link_libraries (${LIB_NAME} ws2_32)
27
+ endif ()
28
+ PCL_ADD_INCLUDES("${SUBSYS_NAME} " "${SUBSYS_NAME} /ply" ${PLY_INCLUDES} )
29
+
30
+ target_link_libraries (${LIB_NAME} pcl_common Boost::boost)
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 40
40
41
41
#pragma once
42
42
43
- #include < pcl/io/ply /byte_order.h>
43
+ #include < pcl/io_ply /byte_order.h>
44
44
#include < cstdint> // for int8_t, int16_t, ...
45
45
46
46
/* * \file ply.h contains standard typedefs and generic type traits
Original file line number Diff line number Diff line change 40
40
41
41
#pragma once
42
42
43
- #include < pcl/io/ply /ply.h>
44
- #include < pcl/io/ply /io_operators.h>
43
+ #include < pcl/io_ply /ply.h>
44
+ #include < pcl/io_ply /io_operators.h>
45
45
#include < pcl/pcl_macros.h>
46
46
47
47
#include < istream>
Original file line number Diff line number Diff line change 38
38
*
39
39
*/
40
40
41
- #include < pcl/io/ply /ply_parser.h>
41
+ #include < pcl/io_ply /ply_parser.h>
42
42
43
43
#include < algorithm> // for find_if
44
44
#include < fstream> // for ifstream
Original file line number Diff line number Diff line change 38
38
*
39
39
*/
40
40
41
- #include < pcl/io/ply /ply_parser.h>
41
+ #include < pcl/io_ply /ply_parser.h>
42
42
43
43
#include < cstdlib>
44
44
#include < cstring>
Original file line number Diff line number Diff line change 37
37
*
38
38
*/
39
39
40
- #include < pcl/io/ply /ply_parser.h>
40
+ #include < pcl/io_ply /ply_parser.h>
41
41
42
42
#include < cstdlib>
43
43
#include < cstring>
Original file line number Diff line number Diff line change 37
37
*
38
38
*/
39
39
40
- #include < pcl/io/ply /ply_parser.h>
40
+ #include < pcl/io_ply /ply_parser.h>
41
41
42
42
#include < cstdlib>
43
43
#include < cstring>
You can’t perform that action at this time.
0 commit comments