(self)
| 635 | |
| 636 | class build_installer(py2exe): |
| 637 | def run(self): |
| 638 | py2exe.run(self) |
| 639 | print('*** deleting unnecessary libraries and modules ***') |
| 640 | pruneUnneededLibraries() |
| 641 | print('*** copying qt plugins ***') |
| 642 | copyQtPlugins(qt_plugins) |
| 643 | script = NSISScript() |
| 644 | script.create() |
| 645 | print("*** compiling the NSIS setup script ***") |
| 646 | script.compile() |
| 647 | print("*** DONE ***") |
| 648 | |
| 649 | guiIcons = glob('syncplay/resources/*.ico') + glob('syncplay/resources/*.png') + ['syncplay/resources/spinner.mng'] |
| 650 |
nothing calls this directly
no test coverage detected