diff options
author | David Walter Seikel | 2014-04-20 15:32:29 +1000 |
---|---|---|
committer | David Walter Seikel | 2014-04-20 15:32:29 +1000 |
commit | c47efd9571614786ad09a1a001cf8e4e327856b2 (patch) | |
tree | e7d68ed7baec087f48400956393afc455879b5c2 | |
parent | Convert build shell scripts to Lua, with common infrastructure. (diff) | |
download | SledjHamr-c47efd9571614786ad09a1a001cf8e4e327856b2.zip SledjHamr-c47efd9571614786ad09a1a001cf8e4e327856b2.tar.gz SledjHamr-c47efd9571614786ad09a1a001cf8e4e327856b2.tar.bz2 SledjHamr-c47efd9571614786ad09a1a001cf8e4e327856b2.tar.xz |
Add breath test comments.
-rwxr-xr-x | build.lua | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -75,10 +75,12 @@ EDJE_FLAGS = '-id images -fd fonts' | |||
75 | 75 | ||
76 | 76 | ||
77 | if 'nil' == type(args) then | 77 | if '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') |