Qt on Apple platforms
Solved
Installation and Deployment
-
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. -