10 lines
294 B
Batchfile
10 lines
294 B
Batchfile
@echo off
|
|
|
|
rem Adjust the path to match your PyQt4 installation
|
|
SET PYQTPATH="C:\Projekte\Panda3D\built_x64\python\Lib\site-packages\PyQt4"
|
|
|
|
python -m PyQt4.uic.pyuic --from-imports main_window.ui -o main_window_generated.py
|
|
"%PYQTPATH%\pyrcc4.exe" -py3 resources.qrc -o resources_rc.py
|
|
|
|
pause
|