Browse Source

Fixed GLFW lib name.

Branimir Karadžić 7 years ago
parent
commit
0a00831e4b
2 changed files with 2 additions and 4 deletions
  1. 1 1
      scripts/genie.lua
  2. 1 3
      scripts/texturev.lua

+ 1 - 1
scripts/genie.lua

@@ -159,7 +159,7 @@ function exampleProjectDefaults()
 
 
 	if _OPTIONS["with-glfw"] then
 	if _OPTIONS["with-glfw"] then
 		defines { "ENTRY_CONFIG_USE_GLFW=1" }
 		defines { "ENTRY_CONFIG_USE_GLFW=1" }
-		links   { "glfw" }
+		links   { "glfw3" }
 
 
 		configuration { "linux or freebsd" }
 		configuration { "linux or freebsd" }
 			links {
 			links {

+ 1 - 3
scripts/texturev.lua

@@ -41,9 +41,7 @@ project ("texturev")
 
 
 	if _OPTIONS["with-glfw"] then
 	if _OPTIONS["with-glfw"] then
 		defines { "ENTRY_CONFIG_USE_GLFW=1" }
 		defines { "ENTRY_CONFIG_USE_GLFW=1" }
-		links   {
-			"glfw3"
-		}
+		links   { "glfw3" }
 
 
 		configuration { "linux or freebsd" }
 		configuration { "linux or freebsd" }
 			links {
 			links {