Re: [cmake-developers] Patch: install universal iOS libraries

2015-10-27 Thread Ruslan Baratov via cmake-developers
On 28-Oct-15 00:56, Gregor Jasny wrote: Hello, I hope to have finished the review by end of this week. On 25/10/15 15:34, Ruslan Baratov wrote: + set(cmd lipo -info "${filename}") Minor nitpick: lipo should probably be called via xcrun. Otherwise it might not know how to handle new

Re: [cmake-developers] Patch: install universal iOS libraries

2015-10-23 Thread Gregor Jasny via cmake-developers
On 08/10/15 02:37, Ruslan Baratov wrote: >>> export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos >>> export CORRESPONDING_DEVICE_SDK_NAME=iphoneos9.0 >>> export SDK_NAME=iphonesimulator9.0 >> Could you use those variables to avoid hardcoding iphoneos/simulator in >> the module? > I see

Re: [cmake-developers] Patch: install universal iOS libraries

2015-10-07 Thread Ruslan Baratov via cmake-developers
On 07-Oct-15 16:57, Gregor Jasny wrote: Hello, thank you for working on this. This is really hairy stuff. On 24/09/15 11:10, Ruslan Baratov via cmake-developers wrote: Patches help to install universal iOS (device + simulator) libraries by triggering some extra instructions (build + fuse)

Re: [cmake-developers] Patch: install universal iOS libraries

2015-10-07 Thread Gregor Jasny via cmake-developers
Hello, thank you for working on this. This is really hairy stuff. On 24/09/15 11:10, Ruslan Baratov via cmake-developers wrote: > Patches help to install universal iOS (device + simulator) libraries by > triggering some extra instructions (build + fuse) after "regular" > library installation

[cmake-developers] Patch: install universal iOS libraries

2015-09-24 Thread Ruslan Baratov via cmake-developers
Hi, Patches help to install universal iOS (device + simulator) libraries by triggering some extra instructions (build + fuse) after "regular" library installation finished. This behavior controlled by CMake variable CMAKE_IOS_INSTALL_UNIVERSAL_LIBS. = Example = > cat CMakeLists.txt