Qt on Apple platforms
-
I'm trying to cross-compile a CMake Qt project for tvOS and the compilation fails due to linking to Apple frameworks that are not available on this platform (AssetLibrary).
In the generated Xcode project I see a bunch of Apple frameworks referred via the
OTHER_CPLUSPLUSFLAGS
Xcode variable. None of them come from my CMakeLists definitions.I trust this frameworks are not picked arbitrarily, but what controls it? Please direct me how can I find the culprit that caused
-framework AssetsLibrary
included there. -
None of the *.prl files in Qt/6.6.1/ios/lib seems to refer to
AssetsLibrary
. -
I just realized that Qt6 is not tested against tvOS specifically and is built against iOS. The latter has wider selection of available frameworks.
I guess I'll need to manually Qt for tvOS.
-
2/3