File: CMakeLists.txt

package info (click to toggle)
pcl 1.13.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 143,524 kB
  • sloc: cpp: 518,578; xml: 28,792; ansic: 13,676; python: 334; lisp: 93; sh: 49; makefile: 30
file content (120 lines) | stat: -rw-r--r-- 6,312 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
set(SUBSYS_NAME tests_features)
set(SUBSYS_DESC "Point cloud library features module unit tests")
PCL_SET_TEST_DEPENDENCIES(SUBSYS_DEPS features)
set(OPT_DEPS io keypoints) # module does not depend on these

set(DEFAULT ON)
set(build TRUE)
PCL_SUBSYS_OPTION(build "${SUBSYS_NAME}" "${SUBSYS_DESC}" ${DEFAULT} "${REASON}")
PCL_SUBSYS_DEPEND(build NAME ${SUBSYS_NAME} DEPS ${SUBSYS_DEPS} OPT_DEPS ${OPT_DEPS})

if(NOT build)
  return()
endif()

PCL_ADD_TEST(features_ptr test_features_ptr
             FILES test_ptr.cpp
             LINK_WITH pcl_gtest pcl_features)
PCL_ADD_TEST(feature_gradient_estimation test_gradient_estimation
             FILES test_gradient_estimation.cpp
             LINK_WITH pcl_gtest pcl_features)
PCL_ADD_TEST(feature_rift_estimation test_rift_estimation
             FILES test_rift_estimation.cpp
             LINK_WITH pcl_gtest pcl_features)

if(BUILD_io)
  PCL_ADD_TEST(feature_base test_base_feature
               FILES test_base_feature.cpp
               LINK_WITH pcl_gtest pcl_features pcl_io
               ARGUMENTS "${PCL_SOURCE_DIR}/test/bun0.pcd")
  PCL_ADD_TEST(feature_cppf_estimation test_cppf_estimation
               FILES test_cppf_estimation.cpp
               LINK_WITH pcl_gtest pcl_features pcl_io
               ARGUMENTS "${PCL_SOURCE_DIR}/test/colored_cloud.pcd")
  PCL_ADD_TEST(feature_normal_estimation test_normal_estimation
               FILES test_normal_estimation.cpp
               LINK_WITH pcl_gtest pcl_features pcl_io
               ARGUMENTS "${PCL_SOURCE_DIR}/test/bun0.pcd")
  PCL_ADD_TEST(feature_pfh_estimation test_pfh_estimation
               FILES test_pfh_estimation.cpp
               LINK_WITH pcl_gtest pcl_features pcl_io
               ARGUMENTS "${PCL_SOURCE_DIR}/test/bun0.pcd")

  PCL_ADD_TEST(feature_cvfh_estimation test_cvfh_estimation
               FILES test_cvfh_estimation.cpp
               LINK_WITH pcl_gtest pcl_features pcl_io pcl_filters
               ARGUMENTS "${PCL_SOURCE_DIR}/test/bun0.pcd" "${PCL_SOURCE_DIR}/test/milk.pcd")

  PCL_ADD_TEST(feature_ppf_estimation test_ppf_estimation
               FILES test_ppf_estimation.cpp
               LINK_WITH pcl_gtest pcl_features pcl_io
               ARGUMENTS "${PCL_SOURCE_DIR}/test/bun0.pcd")
  PCL_ADD_TEST(feature_shot_estimation test_shot_estimation
               FILES test_shot_estimation.cpp
               LINK_WITH pcl_gtest pcl_features pcl_io
               ARGUMENTS "${PCL_SOURCE_DIR}/test/bun0.pcd")
  PCL_ADD_TEST(feature_boundary_estimation test_boundary_estimation
               FILES test_boundary_estimation.cpp
               LINK_WITH pcl_gtest pcl_features pcl_io
               ARGUMENTS "${PCL_SOURCE_DIR}/test/bun0.pcd")
  PCL_ADD_TEST(feature_curvatures_estimation test_curvatures_estimation
               FILES test_curvatures_estimation.cpp
               LINK_WITH pcl_gtest pcl_features pcl_io
               ARGUMENTS "${PCL_SOURCE_DIR}/test/bun0.pcd")
  PCL_ADD_TEST(feature_spin_estimation test_spin_estimation
               FILES test_spin_estimation.cpp
               LINK_WITH pcl_gtest pcl_features pcl_io
               ARGUMENTS "${PCL_SOURCE_DIR}/test/bun0.pcd")
  PCL_ADD_TEST(feature_rsd_estimation test_rsd_estimation
               FILES test_rsd_estimation.cpp
               LINK_WITH pcl_gtest pcl_features pcl_io pcl_kdtree
               ARGUMENTS "${PCL_SOURCE_DIR}/test/bun0.pcd")
  PCL_ADD_TEST(feature_grsd_estimation test_grsd_estimation
               FILES test_grsd_estimation.cpp
               LINK_WITH pcl_gtest pcl_features pcl_io pcl_kdtree
               ARGUMENTS "${PCL_SOURCE_DIR}/test/bun0.pcd")
  PCL_ADD_TEST(feature_invariants_estimation test_invariants_estimation
               FILES test_invariants_estimation.cpp
               LINK_WITH pcl_gtest pcl_features pcl_io
               ARGUMENTS "${PCL_SOURCE_DIR}/test/bun0.pcd")
  PCL_ADD_TEST(feature_board_estimation test_board_estimation
               FILES test_board_estimation.cpp
               LINK_WITH pcl_gtest pcl_features pcl_io
               ARGUMENTS "${PCL_SOURCE_DIR}/test/bun0.pcd")
  PCL_ADD_TEST(feature_flare_estimation test_flare_estimation
               FILES test_flare_estimation.cpp
               LINK_WITH pcl_gtest pcl_features pcl_io
               ARGUMENTS "${PCL_SOURCE_DIR}/test/bun0.pcd")
  PCL_ADD_TEST(feature_shot_lrf_estimation test_shot_lrf_estimation
               FILES test_shot_lrf_estimation.cpp
               LINK_WITH pcl_gtest pcl_features pcl_io
               ARGUMENTS "${PCL_SOURCE_DIR}/test/bun0.pcd")
  PCL_ADD_TEST(features_narf test_narf
               FILES test_narf.cpp
               LINK_WITH pcl_gtest pcl_features FLANN::FLANN)
  PCL_ADD_TEST(a_ii_normals_test test_ii_normals
               FILES test_ii_normals.cpp
               LINK_WITH pcl_gtest pcl_io pcl_features
               ARGUMENTS "${PCL_SOURCE_DIR}/test/table_scene_mug_stereo_textured.pcd")
  PCL_ADD_TEST(feature_moment_of_inertia_estimation test_moment_of_inertia_estimation
               FILES test_moment_of_inertia_estimation.cpp
               LINK_WITH pcl_gtest pcl_io pcl_features
               ARGUMENTS "${PCL_SOURCE_DIR}/test/lamppost.pcd")
  PCL_ADD_TEST(feature_rops_estimation test_rops_estimation
               FILES test_rops_estimation.cpp
               LINK_WITH pcl_gtest pcl_io pcl_features
               ARGUMENTS "${PCL_SOURCE_DIR}/test/rops_cloud.pcd" "${PCL_SOURCE_DIR}/test/rops_indices.txt" "${PCL_SOURCE_DIR}/test/rops_triangles.txt")
  PCL_ADD_TEST(feature_gasd_estimation test_gasd_estimation
               FILES test_gasd_estimation.cpp
               LINK_WITH pcl_gtest pcl_io pcl_features
               ARGUMENTS "${PCL_SOURCE_DIR}/test/bun0.pcd")
  PCL_ADD_TEST(feature_organized_edge_detection test_organized_edge_detection
               FILES test_organized_edge_detection.cpp
               LINK_WITH pcl_gtest pcl_features pcl_io)
  if(BUILD_keypoints)
    PCL_ADD_TEST(feature_brisk test_brisk
                 FILES test_brisk.cpp
                 LINK_WITH pcl_gtest pcl_io pcl_kdtree pcl_filters pcl_keypoints pcl_common pcl_features pcl_search
                 ARGUMENTS "${PCL_SOURCE_DIR}/test/brisk_image_gt.pcd" "${PCL_SOURCE_DIR}/test/brisk_keypoints_gt.pcd" "${PCL_SOURCE_DIR}/test/brisk_descriptors_gt.pcd")
  endif()
endif()