mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 20:18:18 +00:00
fixed missing libz3.lib file in the z3 binary distribution for windows (thanks to GManNickG)
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
e13e12636a
commit
f02d2ee0e3
|
@ -933,8 +933,6 @@ class DLLComponent(Component):
|
||||||
mk_dir(os.path.join(dist_path, 'bin'))
|
mk_dir(os.path.join(dist_path, 'bin'))
|
||||||
shutil.copy('%s.dll' % os.path.join(build_path, self.dll_name),
|
shutil.copy('%s.dll' % os.path.join(build_path, self.dll_name),
|
||||||
'%s.dll' % os.path.join(dist_path, 'bin', self.dll_name))
|
'%s.dll' % os.path.join(dist_path, 'bin', self.dll_name))
|
||||||
if self.static:
|
|
||||||
mk_dir(os.path.join(dist_path, 'bin'))
|
|
||||||
shutil.copy('%s.lib' % os.path.join(build_path, self.dll_name),
|
shutil.copy('%s.lib' % os.path.join(build_path, self.dll_name),
|
||||||
'%s.lib' % os.path.join(dist_path, 'bin', self.dll_name))
|
'%s.lib' % os.path.join(dist_path, 'bin', self.dll_name))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue