From a9025c8e07a56f1704207d4b6f5db6fb459c151a Mon Sep 17 00:00:00 2001 From: bkaradzic Date: Tue, 4 Jun 2013 21:43:43 -0700 Subject: [PATCH] Renamed common project to example-common. --- premake/{common.lua => example-common.lua} | 2 +- premake/premake4.lua | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename premake/{common.lua => example-common.lua} (93%) diff --git a/premake/common.lua b/premake/example-common.lua similarity index 93% rename from premake/common.lua rename to premake/example-common.lua index 47fcc241..8fcbf6d0 100644 --- a/premake/common.lua +++ b/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" diff --git a/premake/premake4.lua b/premake/premake4.lua index a1e56750..f778da9d 100644 --- a/premake/premake4.lua +++ b/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")