From c80396367e881313ae62936d14c198b147380a2d Mon Sep 17 00:00:00 2001 From: Joey Yakimowich-Payne Date: Fri, 28 Aug 2020 03:11:38 -0600 Subject: [PATCH] Get rid of unneeded deps --- src/glfw/glfw.nim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/glfw/glfw.nim b/src/glfw/glfw.nim index 06305ad..77c274c 100644 --- a/src/glfw/glfw.nim +++ b/src/glfw/glfw.nim @@ -20,7 +20,6 @@ getHeader( giturl = "https://github.com/glfw/glfw", outdir = srcDir, altNames = "glfw,glfw3", - cmakeFlags = &"-DCMAKE_C_FLAGS='-lpthread -pthread -lm'" ) static: @@ -34,7 +33,7 @@ static: cIncludeDir(srcDir/"include"/"GLFW") cPluginPath(symbolPluginPath) -{.passL: "-lm -lpthread -pthread".} +{.passL: "-pthread".} when isDefined(glfw3Static): cImport(srcDir/"include"/"GLFW"/"glfw3.h", recurse = true, flags = "-f=ast2 -E__,_ -F__,_ -H")