diff options
| author | Michael Forney <mforney@mforney.org> | 2018-08-27 17:20:15 -0700 |
|---|---|---|
| committer | Michael Forney <mforney@mforney.org> | 2018-08-27 17:20:15 -0700 |
| commit | 3690dc448cb75b81b1505e8f06ab0d24670fce5d (patch) | |
| tree | c7c86009cb02607a519914ba869e254dc3887930 /pkg/mc/gen.lua | |
| parent | e2aa3bd440484750367401234407baa81901b990 (diff) | |
mc: Update to 0.3.1
Diffstat (limited to 'pkg/mc/gen.lua')
| -rw-r--r-- | pkg/mc/gen.lua | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/pkg/mc/gen.lua b/pkg/mc/gen.lua index 8a283196..c5d87c73 100644 --- a/pkg/mc/gen.lua +++ b/pkg/mc/gen.lua @@ -62,12 +62,31 @@ set('mcflags', { '-I $outdir/lib/sys', '-I $outdir/lib/std', '-I $outdir/lib/bio', + '-I $outdir/lib/iter', '-I $outdir/lib/regex', '-I $outdir/lib/thread', }) include '$dir/myr.ninja' -for lib in iterpaths('bio crypto date escfmt fileutil http inifile json regex std sys testr thread') do +local libs = { + 'bio', + 'crypto', + 'date', + 'escfmt', + 'fileutil', + 'flate', + 'http', + 'inifile', + 'iter', + 'json', + 'math', + 'regex', + 'std', + 'sys', + 'testr', + 'thread', +} +for _, lib in ipairs(libs) do file('lib/myr/lib'..lib..'.use', '644', '$outdir/lib/'..lib..'/lib'..lib..'.use') file('lib/myr/lib'..lib..'.a', '644', '$outdir/lib/'..lib..'/lib'..lib..'.a') end |
