Branimir Karadžić 8 years ago
parent
commit
97b4b46bc6
2 changed files with 10 additions and 4 deletions
  1. 5 2
      scripts/geometryc.lua
  2. 5 2
      scripts/texturec.lua

+ 5 - 2
scripts/geometryc.lua

@@ -4,7 +4,7 @@
 --
 
 project "geometryc"
-	uuid "8794dc3a-2d57-11e2-ba18-368d09e48fda"
+	uuid (os.uuid("geometryc"))
 	kind "ConsoleApp"
 
 	includedirs {
@@ -31,13 +31,16 @@ project "geometryc"
 
 	configuration { "mingw-*" }
 		targetextension ".exe"
+		links {
+			"psapi",
+		}
 
 	configuration { "osx" }
 		links {
 			"Cocoa.framework",
 		}
 
-	configuration { "vs20* or mingw*" }
+	configuration { "vs20*" }
 		links {
 			"psapi",
 		}

+ 5 - 2
scripts/texturec.lua

@@ -4,7 +4,7 @@
 --
 
 project "texturec"
-	uuid "838801ee-7bc3-11e1-9f19-eae7d36e7d26"
+	uuid (os.uuid("texturec"))
 	kind "ConsoleApp"
 
 	includedirs {
@@ -27,13 +27,16 @@ project "texturec"
 
 	configuration { "mingw-*" }
 		targetextension ".exe"
+		links {
+			"psapi",
+		}
 
 	configuration { "osx" }
 		links {
 			"Cocoa.framework",
 		}
 
-	configuration { "vs20* or mingw*" }
+	configuration { "vs20*" }
 		links {
 			"psapi",
 		}