├── .gitignore ├── LICENSE ├── README.md ├── doc ├── How to build PyQt Maya 2020.docx └── How to build PyQt Maya 2020.pdf ├── linux ├── getPyQtSources ├── getSipSources ├── pyqt └── sip ├── osx ├── getPyQtSources ├── getSipSources ├── pyqt └── sip ├── tests ├── pyqt5-test.py └── sip-test.py └── win ├── buildAll.bat ├── pyqt.bat ├── setup.bat └── sip.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrillef/Maya-PyQt-Scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrillef/Maya-PyQt-Scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrillef/Maya-PyQt-Scripts/HEAD/README.md -------------------------------------------------------------------------------- /doc/How to build PyQt Maya 2020.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrillef/Maya-PyQt-Scripts/HEAD/doc/How to build PyQt Maya 2020.docx -------------------------------------------------------------------------------- /doc/How to build PyQt Maya 2020.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrillef/Maya-PyQt-Scripts/HEAD/doc/How to build PyQt Maya 2020.pdf -------------------------------------------------------------------------------- /linux/getPyQtSources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrillef/Maya-PyQt-Scripts/HEAD/linux/getPyQtSources -------------------------------------------------------------------------------- /linux/getSipSources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrillef/Maya-PyQt-Scripts/HEAD/linux/getSipSources -------------------------------------------------------------------------------- /linux/pyqt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrillef/Maya-PyQt-Scripts/HEAD/linux/pyqt -------------------------------------------------------------------------------- /linux/sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrillef/Maya-PyQt-Scripts/HEAD/linux/sip -------------------------------------------------------------------------------- /osx/getPyQtSources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrillef/Maya-PyQt-Scripts/HEAD/osx/getPyQtSources -------------------------------------------------------------------------------- /osx/getSipSources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrillef/Maya-PyQt-Scripts/HEAD/osx/getSipSources -------------------------------------------------------------------------------- /osx/pyqt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrillef/Maya-PyQt-Scripts/HEAD/osx/pyqt -------------------------------------------------------------------------------- /osx/sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrillef/Maya-PyQt-Scripts/HEAD/osx/sip -------------------------------------------------------------------------------- /tests/pyqt5-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrillef/Maya-PyQt-Scripts/HEAD/tests/pyqt5-test.py -------------------------------------------------------------------------------- /tests/sip-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrillef/Maya-PyQt-Scripts/HEAD/tests/sip-test.py -------------------------------------------------------------------------------- /win/buildAll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrillef/Maya-PyQt-Scripts/HEAD/win/buildAll.bat -------------------------------------------------------------------------------- /win/pyqt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrillef/Maya-PyQt-Scripts/HEAD/win/pyqt.bat -------------------------------------------------------------------------------- /win/setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrillef/Maya-PyQt-Scripts/HEAD/win/setup.bat -------------------------------------------------------------------------------- /win/sip.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrillef/Maya-PyQt-Scripts/HEAD/win/sip.bat --------------------------------------------------------------------------------