Skip to content

Commit

Permalink
Fixed linker issues for triangulation algorithms
Browse files Browse the repository at this point in the history
  • Loading branch information
Pseudomanifold committed Jan 5, 2018
1 parent 6e01ecf commit 750b1ed
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions TriangulationAlgorithms/CMakeLists.txt
@@ -1,6 +1,14 @@
SET( TRIANGULATION_ALGORITHMS_SRC
TriangulationAlgorithm.cpp
MinimumWeightTriangulation.cpp
TriangulationAlgorithm.cpp
MinimumWeightTriangulation.cpp
# Add mesh library dependency explicitly here in order to prevent
# linker problems.
../directed_edge.cpp
../edge.cpp
../face.cpp
../mesh.cpp
../v3ctor.cpp
../vertex.cpp
)

ADD_LIBRARY(TriangulationAlgorithms SHARED ${TRIANGULATION_ALGORITHMS_SRC})
Expand Down

0 comments on commit 750b1ed

Please sign in to comment.