Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用 cmake 为 iOS 构建我的应用程序时,它只输出一个 iPhone 应用程序,而不是一个通用应用程序,我的源代码就是为它编写的。查看 cmake 文档,我没有看到任何关于如何指定我要构建通用或仅 iPad 应用程序的内容。通过 CMake 构建时如何指定通用 iOS 应用程序?
add_executable(foo ...) set_target_properties( foo PROPERTIES XCODE_ATTRIBUTE_TARGETED_DEVICE_FAMILY "1,2" )
set_property(目标 ${MYTARGET} 属性 XCODE_ATTRIBUTE_TARGETED_DEVICE_FAMILY “iPhone/iPad”)