Category: qt

Qt5Network.lib(Qt5Network.dll) : fatal error LNK1112: module machine type 'x64' conflicts with target machine type 'X86' 0

Qt5Network.lib(Qt5Network.dll) : fatal error LNK1112: module machine type 'x64' conflicts with target machine type 'X86'

$> nmake (...) moc_webfile.cpp moc_xmlparser.cpp moc_QBreakpadHandler.cpp moc_QBreakpadHttpUploader.cpp Generating Code... link /NOLOGO /DYNAMICBASE /NXCOMPAT /INCREMENTAL:NO /SUBSYSTEM:WINDOWS " /MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture ='*'" /VERSION:1.21 /MANIFEST:embed /OUT:"release\Haivision Helper.exe" @C:\Users\Frank\AppData\Local\Temp\nmD970.tmp Qt5Network.lib(Qt5Network.dll) : fatal error LNK1112: module...

QObject: Cannot create children for a parent that is in a different thread. 0

QObject: Cannot create children for a parent that is in a different thread.

Verifying sig of "/var/folders/zq/8tgn5xxs6xjdmhky_c3x3s79yx39ym/T/HaivisionHelper_sample-outputter/checksum_7158d01e2df962079a3cda50ed56df92/sample-outputter" Going to launching... After launching... QObject: Cannot create children for a parent that is in a different thread. (Parent is QProcess(0x7f8ca9787830), parent's thread is QThread(0x7f8ca9501040), current thread is QThread(0x7f8ca96b3070) QObject:...

Redirect output in QtProcess 0

Redirect output in QtProcess

Method 1 - process->setStandardOutputFile() with process->start() Pro: - Easy to program Cons: - Does not work with process->startDetached(). Only works with process->start() - Only write to the file once the process exit. The file...