Skip to content

Commit

Permalink
v.delaunay3D: remove -lCGAL (#1028)
Browse files Browse the repository at this point in the history
CGAL is header only since v5 and no need to link against a lib
  • Loading branch information
lbartoletti committed Feb 21, 2024
1 parent bfb55b1 commit 42cffac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vector/v.delaunay3d/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ DEPENDENCIES = $(GPROJDEP) $(VECTORDEP) $(GISDEP)
EXTRA_INC = $(VECT_INC) $(PROJINC)
EXTRA_CFLAGS = $(VECT_CFLAGS) -frounding-math
ifeq ($(detected_OS),FreeBSD)
EXTRA_LDFLAGS = -lCGAL -lgmp -lcxxrt -lstdc++
EXTRA_LDFLAGS = -lgmp -lcxxrt -lstdc++
else
EXTRA_LDFLAGS = -lCGAL -lgmp -lstdc++
EXTRA_LDFLAGS = -lgmp -lstdc++
endif

LINK = $(CXX)
Expand Down

0 comments on commit 42cffac

Please sign in to comment.