From ad5501fa9b0214d20097a130bdbf5abdb5b6b9e4 Mon Sep 17 00:00:00 2001 From: David Schneider Date: Mon, 18 Sep 2023 09:06:08 +0200 Subject: [PATCH] Fix linker flag for mesh tools --- tools/mesh-tools/makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/mesh-tools/makefile b/tools/mesh-tools/makefile index e1ce9522..030c12d4 100644 --- a/tools/mesh-tools/makefile +++ b/tools/mesh-tools/makefile @@ -3,7 +3,7 @@ all: mesh scale mesh: mesh.cpp - g++ -lgmsh mesh.cpp -o mesh + g++ mesh.cpp -o mesh -lgmsh scale: scale.cpp - g++ -lgmsh scale.cpp -o scale + g++ scale.cpp -o scale -lgmsh