-
-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
70 lines (57 loc) · 1.54 KB
/
CMakeLists.txt
File metadata and controls
70 lines (57 loc) · 1.54 KB
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
set(TESTS_SRC
testArithmeticalDSSComputerOnSurfels
testChordGenericStandardPlaneComputer
testDigitalPlanePredicate
testPlaneProbingTetrahedronEstimator
testPlaneProbingParallelepipedEstimator
)
foreach(FILE ${TESTS_SRC})
DGtal_add_test(${FILE})
endforeach()
set(TESTS_SURFACES_SRC
testIntegralInvariantShortcuts
testNormalVectorEstimatorEmbedder
testIntegralInvariantVolumeEstimator
testIntegralInvariantCovarianceEstimator
testLocalEstimatorFromFunctorAdapter
testVoronoiCovarianceMeasureOnSurface
testTensorVoting
testEstimatorCache
testSphericalHoughNormalVectorEstimator
testDigitalSurfaceRegularization
testShroudsRegularization
)
foreach(FILE ${TESTS_SURFACES_SRC})
DGtal_add_test(${FILE})
endforeach()
if ( DGTAL_WITH_CGAL )
set(CGAL_TESTS_SRC
testMonge )
foreach(FILE ${CGAL_TESTS_SRC})
DGtal_add_test(${FILE})
endforeach()
endif()
if ( DGTAL_WITH_POLYSCOPE_VIEWER )
set(POLYSCOPE_VIEWER_TESTS_SRC
testIntegralInvariantTraversal
testLocalConvolutionNormalVectorEstimator
testTensorVotingViewer)
foreach(FILE ${POLYSCOPE_VIEWER_TESTS_SRC})
DGtal_add_test(${FILE} ONLY_ADD_EXECUTABLE)
endforeach()
endif()
if ( DGTAL_WITH_PONCA )
set(PONCA_TESTS_SRC
testSphereFitting )
foreach(FILE ${PONCA_TESTS_SRC})
DGtal_add_test(${FILE})
endforeach()
endif()
set(DGTAL_TESTS_BIGINTEGERS
testCOBANaivePlaneComputer
testCOBAGenericStandardPlaneComputer
testChordNaivePlaneComputer
)
foreach(FILE ${DGTAL_TESTS_BIGINTEGERS})
DGtal_add_test(${FILE})
endforeach()