Browse Source

Renamed common project to example-common.

bkaradzic 12 years ago
parent
commit
a9025c8e07
2 changed files with 3 additions and 3 deletions
  1. 1 1
      premake/example-common.lua
  2. 2 2
      premake/premake4.lua

+ 1 - 1
premake/common.lua → premake/example-common.lua

@@ -3,7 +3,7 @@
 -- License: http://www.opensource.org/licenses/BSD-2-Clause
 --
 
-project ("common")
+project ("example-common")
 	uuid ("21cc0e26-bf62-11e2-a01e-0291bd4c8125")
 	kind "StaticLib"
 

+ 2 - 2
premake/premake4.lua

@@ -57,7 +57,7 @@ function exampleProject(_name, _uuid)
 
 	links {
 		"bgfx",
-		"common",
+		"example-common",
 	}
 
 	configuration { "android*" }
@@ -115,7 +115,7 @@ function exampleProject(_name, _uuid)
 end
 
 dofile "bgfx.lua"
-dofile "common.lua"
+dofile "example-common.lua"
 exampleProject("00-helloworld", "ff2c8450-ebf4-11e0-9572-0800200c9a66")
 exampleProject("01-cubes",      "fec3bc94-e1e5-11e1-9c59-c7eeec2c1c51")
 exampleProject("02-metaballs",  "413b2cb4-f7db-11e1-bf5f-a716de6a022f")