()
| 56 | |
| 57 | |
| 58 | def 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 | |
| 68 | def build(): |