MCPcopy Create free account
hub / github.com/Distributive-Network/PythonMonkey / copy_artifacts

Function copy_artifacts

build.py:58–65  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

56
57
58def copy_artifacts():
59
60 if platform.system() == "Windows":
61 execute("cp ./build/src/*/pythonmonkey.pyd ./python/pythonmonkey/", cwd=TOP_DIR) # Release or Debug build
62 execute("cp ./_spidermonkey_install/lib/mozjs-*.dll ./python/pythonmonkey/", cwd=TOP_DIR)
63 else:
64 execute("cp ./build/src/pythonmonkey.so ./python/pythonmonkey/", cwd=TOP_DIR)
65 execute("cp ./_spidermonkey_install/lib/libmozjs* ./python/pythonmonkey/", cwd=TOP_DIR)
66
67
68def build():

Callers 1

buildFunction · 0.85

Calls 1

executeFunction · 0.70

Tested by

no test coverage detected