summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-06-18 16:27:21 +0100
committerCarl Hetherington <cth@carlh.net>2019-06-18 16:27:21 +0100
commitde4adaf8b3edb25afc28c1c251a9b5b304e3c84c (patch)
tree3832f9136fc936f1cb47cfeaaa9d64e54d8d3bca /cscript
parent00554f24fad5cabae6ae5f2df45576db8f1cce8b (diff)
Some missing includes.
Diffstat (limited to 'cscript')
-rw-r--r--cscript2
1 files changed, 2 insertions, 0 deletions
diff --git a/cscript b/cscript
index 931ea20..67d1203 100644
--- a/cscript
+++ b/cscript
@@ -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)