From 6ca52c5c1038d76ff7598c61b1c2ba069584b2c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Sat, 6 Dec 2014 12:52:14 -0800 Subject: [PATCH] Updated GENie script. --- scripts/genie.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/genie.lua b/scripts/genie.lua index e641f781..03b93e82 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -278,9 +278,14 @@ function exampleProject(_name) end dofile "bgfx.lua" + +group "examples" dofile "example-common.lua" + +group "libs" bgfxProject("", "StaticLib", {}) +group "examples" exampleProject("00-helloworld") exampleProject("01-cubes") exampleProject("02-metaballs") @@ -307,10 +312,12 @@ exampleProject("22-windows") exampleProject("23-vectordisplay") if _OPTIONS["with-shared-lib"] then + group "libs" bgfxProject("-shared-lib", "SharedLib", {}) end if _OPTIONS["with-tools"] then + group "tools" dofile "makedisttex.lua" dofile "shaderc.lua" dofile "texturec.lua"