aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-04-20 15:32:29 +1000
committerDavid Walter Seikel2014-04-20 15:32:29 +1000
commitc47efd9571614786ad09a1a001cf8e4e327856b2 (patch)
treee7d68ed7baec087f48400956393afc455879b5c2
parentConvert build shell scripts to Lua, with common infrastructure. (diff)
downloadSledjHamr-c47efd9571614786ad09a1a001cf8e4e327856b2.zip
SledjHamr-c47efd9571614786ad09a1a001cf8e4e327856b2.tar.gz
SledjHamr-c47efd9571614786ad09a1a001cf8e4e327856b2.tar.bz2
SledjHamr-c47efd9571614786ad09a1a001cf8e4e327856b2.tar.xz
Add breath test comments.
-rwxr-xr-xbuild.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/build.lua b/build.lua
index de337de..0e88bbf 100755
--- a/build.lua
+++ b/build.lua
@@ -75,10 +75,12 @@ EDJE_FLAGS = '-id images -fd fonts'
75 75
76 76
77if 'nil' == type(args) then 77if 'nil' == type(args) then
78 -- Building this passes my "holding breath" test, if it can compile while I'm holding my breath, no need for make files.
78 print('_______________ BUILDING lemon _______________') 79 print('_______________ BUILDING lemon _______________')
79 removeFiles(LOCALDIR .. '/libraries/lemon', {'*.o', 'lemon'}) 80 removeFiles(LOCALDIR .. '/libraries/lemon', {'*.o', 'lemon'})
80 compileFiles('lemon', LOCALDIR .. '/libraries/lemon', {'lemon'}) 81 compileFiles('lemon', LOCALDIR .. '/libraries/lemon', {'lemon'})
81 print('_______________ BUILDING Irrlicht _______________') 82 print('_______________ BUILDING Irrlicht _______________')
83 -- Irrlicht is an external project that comes with make files anyway, and doesn't otherwise pass the test.
82 runCommand('Irrlicht', 'libraries/irrlicht-1.8.1/source/Irrlicht', 'make') 84 runCommand('Irrlicht', 'libraries/irrlicht-1.8.1/source/Irrlicht', 'make')
83 buildSub('LuaSL', 'LuaSL') 85 buildSub('LuaSL', 'LuaSL')
84 buildSub('GuiLua', 'ClientHamr/GuiLua') 86 buildSub('GuiLua', 'ClientHamr/GuiLua')