mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 14:13:23 +00:00
adapt paths to new distribution
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f7ed4adfbb
commit
9bd8e35581
2 changed files with 11 additions and 4 deletions
|
@ -78,8 +78,15 @@ def unpack(packages, symbols, arch):
|
|||
if symbols:
|
||||
files += ["Microsoft.Z3.pdb", "Microsoft.Z3.xml"]
|
||||
for b in files:
|
||||
zip_ref.extract(f"{package_dir}/bin/{b}", f"{tmp}")
|
||||
replace(f"{tmp}/{package_dir}/bin/{b}", f"out/lib/netstandard2.0/{b}")
|
||||
file = f"{package_dir}/bin/{b}"
|
||||
if os.path.exists(file):
|
||||
zip_ref.extract(file, f"{tmp}")
|
||||
replace(f"{tmp}/{package_dir}/bin/{b}", f"out/lib/netstandard2.0/{b}")
|
||||
file = os.path.join(file,"netstandard2.0")
|
||||
if os.path.exists(file):
|
||||
zip_ref.extract(file, f"{tmp}")
|
||||
replace(f"{tmp}/{package_dir}/bin/netstandard2.0/{b}", f"out/lib/netstandard2.0/{b}")
|
||||
|
||||
|
||||
def mk_targets(source_root):
|
||||
mk_dir("out/build")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue