danvratil / qcoro

C++ Coroutines for Qt
https://qcoro.dvratil.cz
MIT License
331 stars 53 forks source link

iOS support: handle QProcess being not available #153

Closed rgriebl closed 1 year ago

rgriebl commented 1 year ago

Handle QProcess missing on iOS in the same way Qt itself does: put all the QProcess related code inside a

if QT_CONFIG(process)

rgriebl commented 1 year ago

I have switched from my own qmake build setup to cmake + FetchContent and this is the only thing that's breaking the build for iOS now.

danvratil commented 1 year ago

Thanks!