CMake-generated Xcode project how to produce universal dSYM

1.1k Views Asked by At

I'm using CMake with Xcode generator to generate Xcode project to build framework for iOS and tvOS (and other platforms too).

I'm setting IOS_INSTALL_COMBINED to generate a framework that contains both device and simulator architectures automatically without need of calling lipo myself.

The problem is that generated .framework.dSYM is not universal, it has only x86_64 architecture slice. Should I call lipo manually anyway to merge it myself? I wanted to avoid it and have CMake/Xcode do all the work.

0

There are 0 best solutions below