From bc2a24dd86a60a5e8395fd02b895b1ad70c1d1d5 Mon Sep 17 00:00:00 2001 From: notpete Date: Sat, 29 May 2004 21:06:01 +0000 Subject: [PATCH] Modified to handle new maths, graphics and renderer directories. This was SVN commit r311. --- source/workspaces/premake/premake.lua | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/source/workspaces/premake/premake.lua b/source/workspaces/premake/premake.lua index 9e8a628f81..97e2953d86 100755 --- a/source/workspaces/premake/premake.lua +++ b/source/workspaces/premake/premake.lua @@ -28,18 +28,27 @@ package.files = { "../../lib", "../../lib/sysdep", "../../lib/res") }, - -- terrain/ + -- graphics/ { sourcesfromdirs( - "../../terrain") }, + "../../graphics") }, + -- maths/ + { sourcesfromdirs( + "../../maths") }, + -- renderer/ + { sourcesfromdirs( + "../../renderer") }, -- gui/ { sourcesfromdirs( "../../gui") }, + -- terrain/ + { sourcesfromdirs( + "../../terrain") }, -- main { "../../main.cpp" }, -- scripting { sourcesfromdirs("../../scripting") } } -package.includepaths = { "../../ps", "../../simulation", "../../lib", "../../terrain", "../.." } +package.includepaths = { "../../ps", "../../simulation", "../../lib", "../../graphics", "../../maths", "../../renderer", "../../terrain", "../.." } -- Platform Specifics if (OS == "windows") then