mirror of
https://github.com/reactos/CMake.git
synced 2025-02-03 02:24:13 +00:00
565d080a9a
This patch solves the problem of installing both: Device and Simulator libraries on iOS. Before only one of them was installed. If the IOS_INSTALL_COMBINED property is set on a target, a special install hook will be activated which builds the corresponding target and combines both at the install location. The original patch was contributed by Ruslan Baratov, and polished by Gregor Jasny.
12 lines
462 B
ReStructuredText
12 lines
462 B
ReStructuredText
IOS_INSTALL_COMBINED
|
|
--------------------
|
|
|
|
Build a combined (device and simulator) target when installing.
|
|
|
|
When this property is set to set to false (which is the default) then it will
|
|
either be built with the device SDK or the simulator SDK depending on the SDK
|
|
set. But if this property is set to true then the target will at install time
|
|
also be built for the corresponding SDK and combined into one library.
|
|
|
|
This feature requires at least Xcode version 6.
|