IfcClash is now able to be built as an isolated Python binary. Hooray!

This commit is contained in:
Dion Moult
2021-08-03 22:44:46 +10:00
parent 7403d14001
commit ecfe8c3799
6 changed files with 39 additions and 50 deletions
+7
View File
@@ -0,0 +1,7 @@
#!/usr/bin/env python3
import os
import subprocess
cmd = "pyinstaller ./bootstrap.py --name ifcclash --onefile --clean"
subprocess.check_output(cmd, shell=True)