• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

sheldonth/ios-cmake: A blank iOS app build system written in CMake. Includes bui ...

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称:

sheldonth/ios-cmake

开源软件地址:

https://github.com/sheldonth/ios-cmake

开源编程语言:

CMake 80.9%

开源软件介绍:

CMake Build Configuration for iOS

This is a blank single-view-controller iOS app, C++ dynamically linked framework and example tests which use CMake to create an Xcode-friendly out-of-source build system. Instead of configuring the build system through an .xcodeproj file, you instead maintain a set of CMakeLists.txt files describing the build system.

This CMake project can do everything Xcode can; eg build the executable app & the C++ library in cppframework. The build systems, generated into build.ios build.sim build.sim64 Xcode are gitignored. CMakeLists.txt files are the only build configuration kept in source control. This is in contrast to committing the .xcodeproj directory which includes the backing XML, which is nonsensically hard to edit by hand.

The app instantiates a C++ object from the dynamically linked framework and calls a function on it. It subsequently deletes the C++ object pointer.

The test instantiates ObjC object of class CppInterface from the app and checks that it exists.

What can this do for me?

  • Conveniently use external C/C++/Objective-C libraries built with CMake in your app. Just clone the library and add an add_subdirectory to build that dependent library according to it's own build system, but directly as a target in your app's build system.
  • Remove sections of code from your exectuable and instead load it just-in-time as a dynamically linked embedded framework.
    • You can decrease the size of your executable (and thus how much data must be loaded into memory when your app starts) by bundling subsections of the code up and packaging it as an embedded framework. This won't decrease your IPA size (since the framework must still be embedded) but it will make your executable smaller, and therefore quicker to start. If a user never runs the dynamically linked code, it stays out of memory. The sample framework code contains a C++ hello world but it could be C/C++/Objective-C.
  • Stop dealing with and checking into source control pesky .xcodeproj and .xcworkspace directories. The scripts are designed to regenerate your build system frequently.

To Use:

  • Open CMakeLists.txt
    • Set lines 3-15 with values for your project
    • NOTE: the build ./build-ios.sh will fail if you don't have provisioning profiles for the current bundle identifier. It uses the set(CODESIGNIDENTITY "iPhone Developer") identity to use the default certificate for the current bundle identifier.
  • Requires CMake version 3.7

Create Xcode project for Devices (armv7, armv7s, arm64) and Simulators (i386, x86_64)

  • Run generate-project.sh to create Xcode project in Xcode
  • Run open Xcode/project.xcodeproj

Create & build Xcode project for Devices (armv7, armv7s, arm64)

  • Run build-ios.sh to generate the build system in build.ios/
  • Run open build.ios/project.xcodeproj

Create & build Xcode project for Simulator 32-bit (i386)

  • Run build-sim.sh to build the build system in build.sim/
  • Run open build.sim/project.xcodeproj

Create & build Xcode project for Simulator 64-bit (x86_64)

  • Run build-sim64.sh
  • Run open build.sim64/project.xcodeproj

iPhone/iPad

  • The app target builds to iPhone device family. To build an iPhone/iPad target, change the value of DEVICE_FAMILY on line 14 of CMakeLists.txt to "1,2"

Framework

  • Builds a dynamically linked iOS framework for the architectures relevant to the platform
  • Sets the install name and rpath to the correct values for iOS packaging
  • Copies the framework into the bundle of the app build as a post packaging step
  • The same process can be done to any dynamically linked framework on disk



鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap