Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/memononen/nanosvg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikko Mononen <memononen@gmail.com>2014-11-04 16:23:41 +0300
committerMikko Mononen <memononen@gmail.com>2014-11-04 16:23:41 +0300
commitae512001118e56f18484a5417c6450d18a1ad49b (patch)
treefb93e1d44bff854ad786af2ae18b64621ec3e089 /premake4.lua
parentac375ba28db67a7c8881d764f83984982f85d53c (diff)
Another fix for issue #20: more robust matrix parsing
- separated number parsing into a function - more robust parse logic for matrix
Diffstat (limited to 'premake4.lua')
-rw-r--r--premake4.lua7
1 files changed, 3 insertions, 4 deletions
diff --git a/premake4.lua b/premake4.lua
index 3869821..2c6cfd4 100644
--- a/premake4.lua
+++ b/premake4.lua
@@ -39,14 +39,13 @@ solution "nanosvg"
targetdir("build")
configuration { "linux" }
- links { "X11","Xrandr", "rt", "GL", "GLU", "pthread" }
+ links { "X11","Xrandr", "rt", "pthread" }
configuration { "windows" }
- links { "glu32","opengl32", "gdi32", "winmm", "user32" }
+ links { "winmm", "user32" }
configuration { "macosx" }
- links { "glfw3" }
- linkoptions { "-framework OpenGL", "-framework Cocoa", "-framework IOKit", "-framework CoreVideo" }
+ linkoptions { "-framework Cocoa", "-framework IOKit" }
configuration "Debug"
defines { "DEBUG" }