[PyQt] pyqtdeploy feature request

Phil Thompson phil at riverbankcomputing.com
Mon Jan 26 14:14:08 GMT 2015


On 14/01/2015 10:16 am, MOHAMED BLACK wrote:
> hi Phil
> 
> finally i was able to make the Qt wiggly.py exaple to combile with 
> latest
> snapshot pyqtdeploy/rev/d2ded3218072 with the help of build-sysroot.py
> 
> so can you make some sort of gui configuration to configure the qmake 
> *.pro
> file
> so we can add:
> win32:RC_ICONS += MyIcon.ico
> VERSION = 0.4.0.1
> QMAKE_TARGET_COMPANY = MyCompany
> QMAKE_TARGET_PRODUCT = MyProduct
> QMAKE_TARGET_DESCRIPTION = MyProduct is for ...
> QMAKE_TARGET_COPYRIGHT = copyright 2015

There is now a "qmake" tab where you can add this.

> and is there a way to build sqlite with python 3.4.2 i think it has the
> same bug as struct "PyVarObject_HEAD_INIT()"?

What is the problem exactly? As far as I can tell sqlite calls 
PyVarObject_HEAD_INIT() properly.

> and what about my other *.pyd files do i put them with my .exe file
> dir/subdir or i have to embed them in the .exe

If they have to stay as .pyd files (rather than being compiled 
statically) then they have to be kept separate from your .exe file. You 
also need to use a separate Python DLL (rather than compiling Python 
statically). You can use the Python DLL from the Windows installer from 
python.org if you want.

Phil


More information about the PyQt mailing list