Skip to content

Commit 6a25270

Browse files
committed
[cmake] Remove FindClosestProximityAlgorithm from CMakeLists
1 parent 181dc54 commit 6a25270

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ set(HEADER_FILES
2424
${COLLISIONALGORITHM_SRC}/InternalData.h
2525

2626
${COLLISIONALGORITHM_SRC}/algorithm/Find2DClosestProximityAlgorithm.h
27-
${COLLISIONALGORITHM_SRC}/algorithm/FindClosestProximityAlgorithm.h
2827
${COLLISIONALGORITHM_SRC}/algorithm/InsertionAlgorithm.h
2928

3029
${COLLISIONALGORITHM_SRC}/broadphase/AABBBroadPhase.h
@@ -69,7 +68,6 @@ set(SOURCE_FILES
6968
${COLLISIONALGORITHM_SRC}/CollisionPipeline.cpp
7069

7170
${COLLISIONALGORITHM_SRC}/algorithm/Find2DClosestProximityAlgorithm.cpp
72-
${COLLISIONALGORITHM_SRC}/algorithm/FindClosestProximityAlgorithm.cpp
7371
${COLLISIONALGORITHM_SRC}/algorithm/InsertionAlgorithm.cpp
7472

7573
${COLLISIONALGORITHM_SRC}/broadphase/AABBBroadPhase.cpp

src/CollisionAlgorithm/initCollisionAlgorithm.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ extern void registerCollisionLoop(sofa::core::ObjectFactory* factory);
2020

2121
// Algorithms
2222
extern void registerFind2DClosestProximityAlgorithm(sofa::core::ObjectFactory* factory);
23-
extern void registerFindClosestProximityAlgorithm(sofa::core::ObjectFactory* factory);
2423
extern void registerInsertionAlgorithm(sofa::core::ObjectFactory* factory);
2524

2625
// BroadPhase
@@ -90,7 +89,6 @@ void registerObjects(sofa::core::ObjectFactory* factory)
9089
registerCollisionLoop(factory);
9190
// Register Algorithms
9291
registerFind2DClosestProximityAlgorithm(factory);
93-
registerFindClosestProximityAlgorithm(factory);
9492
registerInsertionAlgorithm(factory);
9593
// Register BroadPhase
9694
registerAABBBroadPhase(factory);

0 commit comments

Comments
 (0)