diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-06-18 16:27:21 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-06-18 16:27:21 +0100 |
| commit | de4adaf8b3edb25afc28c1c251a9b5b304e3c84c (patch) | |
| tree | 3832f9136fc936f1cb47cfeaaa9d64e54d8d3bca /cscript | |
| parent | 00554f24fad5cabae6ae5f2df45576db8f1cce8b (diff) | |
Some missing includes.
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -23,6 +23,7 @@ def build(target, options): target.command('make -j%d -C build_generic' % target.parallel) target.command('mkdir -p %s/include/lwext4' % target.directory) target.command('cp -r include/* %s/include/lwext4' % target.directory) + target.command('cp -r build_generic/include/generated %s/include/lwext4' % target.directory) target.command('cp blockdev/linux/file_dev.h %s/include/lwext4' % target.directory) target.command('cp build_generic/blockdev/libblockdev.so %s/lib' % target.directory) elif target.platform == 'windows': @@ -30,5 +31,6 @@ def build(target, options): target.command('make -j%d -C build_mingw') target.command('mkdir -p %s/include/lwext4' % target.directory) target.command('cp -r include/* %s/include/lwext4' % target.directory) + target.command('cp -r build_mingw/include/generated %s/include/lwext4' % target.directory) target.command('cp blockdev/windows/file_dev.h %s/include/lwext4' % target.directory) target.command('cp build_mingw/blockdev/libblockdev.dll %s/lib' % target.directory) |
