diff options
| -rw-r--r-- | cscript | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -75,7 +75,8 @@ def package(target, version): if target.platform == 'windows': d = 'build/libdcp-%s' % version os.mkdir(d) - shutil.copyfile('build/src/tools/dcpinfo.exe', d) + for f in ['asdcp-cth.dll', 'cxml-0.dll', 'dcp-1.0.dll', 'kumu-cth.dll', 'libopenjp2.dll', 'dcpinfo.exe']: + shutil.copyfile('%s/bin/%s' % (target.directory, f), d) os.system('zip -9 -r build/libdcp-%s.zip d' % version) return os.path.abspath('build/libdcp-%s.zip' % version) |
