21.04.2020, 21:52, "Patrick Stinson" :
> Sorry, I meant uic not rcc.
>
>> On Apr 21, 2020, at 10:14 AM, Patrick Stinson wrote:
>>
>> Is there a way to customize the ui compiler to use a command other than rcc?
>>
>> For example, I am trying to set up my pyqt5 project using only qmake and
>>
For the record, this seems to have helped:
win32 {
SIP_PLATFORM = WS_WIN
} macx {
SIP_PLATFORM = WS_MACX
} linux-g++ {
SIP_PLATFORM = WS_LINUX
}
# sip compiler
sip_compiler.input = SIP_SOURCE
sip_compiler.output = sipAPI${QMAKE_FILE_BASE}.h sip${QMAKE_FILE_BASE}part0.cpp
sip${QMAKE_
Sorry, I meant uic not rcc.
> On Apr 21, 2020, at 10:14 AM, Patrick Stinson wrote:
>
> Is there a way to customize the ui compiler to use a command other than rcc?
>
> For example, I am trying to set up my pyqt5 project using only qmake and want
> it to use the command pyrcc5 instead of rcc, a
Is there a way to customize the ui compiler to use a command other than rcc?
For example, I am trying to set up my pyqt5 project using only qmake and want
it to use the command pyrcc5 instead of rcc, and with a few custom command line
arguments.
Thanks!
_