mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
add vcrunime pattern to distribution directive #4542
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
85cb0293f5
commit
9bc5552ca2
2 changed files with 6 additions and 2 deletions
|
@ -143,7 +143,10 @@ def _copy_bins():
|
|||
os.mkdir(HEADERS_DIR)
|
||||
shutil.copy(os.path.join(BUILD_DIR, LIBRARY_FILE), LIBS_DIR)
|
||||
shutil.copy(os.path.join(BUILD_DIR, EXECUTABLE_FILE), BINS_DIR)
|
||||
for filepath in glob.glob(os.path.join(BUILD_DIR, "msvcp*")) + glob.glob(os.path.join(BUILD_DIR, "vcomp*")):
|
||||
path1 = glob.glob(os.path.join(BUILD_DIR, "msvcp*"))
|
||||
path2 = glob.glob(os.path.join(BUILD_DIR, "vcomp*"))
|
||||
path3 = glob.glob(os.path.join(BUILD_DIR, "vcrun*"))
|
||||
for filepath in path1 + path2 + path3:
|
||||
shutil.copy(filepath, LIBS_DIR)
|
||||
|
||||
for header_dir in HEADER_DIRS:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue