-
Notifications
You must be signed in to change notification settings - Fork 297
Building Couchbase Lite
Jens Alfke edited this page Oct 15, 2015
·
17 revisions
- Use Git to clone the Couchbase Lite repository to your local disk. For example:
git clone git://github.com/couchbase/couchbase-lite-ios.git
cd couchbase-lite-ios
- If you want to build a nonstandard branch, enter
git checkout
followed by the branch name. -
git submodule update --init --recursive
. This will clone some external Git repositories into the vendor/ subdirectory.
In the future, you can update to the latest sources by running "git pull
" in the Couchbase Lite directory, then git submodule update --recursive
.
- Open CouchbaseLite.xcodeproj.
- Select the "Continuous iOS", "CBL Mac", or "CBL tvOS" (AppleTV) scheme, depending on which platform you want to build.
- The next step depends on whether you want an optimized or a debug build:
- For an optimized build:
- Choose "Archive" from the "Product" menu.
- Open the Organizer window's Archives tab to find the archive.
- Right-click the archive and choose "Show In Finder".
- Right-click the archive icon in the Finder and choose "Show Package Contents".
- The framework will be inside the "Products" subfolder.
- For a debug build:
- Choose "Build" from the "Product" menu.
- Finding the framework can be tricky as it's buried deep in the build directory, whose location varies depending on your Xcode preferences. Look at the build log in the log navigator pane and the last line of output should include its path.
- For an optimized build:
- Drag CouchbaseLite.framework into the file list of your app's project window.
- An alternate trick, if you want to always use the latest self-built version of CouchbaseLite.framework, is to symbolic-link (symlink) it.
1. Either, into your project folder directly:
$ cd ~/dev/myProject/
$ ln -s ~/dev/couchbase-lite-ios/DerivedData/CouchbaseLite/Build/Products/Debug-ios-universal/CouchbaseLite.framework CouchbaseLite.framework
2. Or, into your project's Framework folder if it has a real mapping to the Frameworks group inside Xcode:
$ cd ~/dev/myProject/Frameworks
$ ln -s ~/dev/couchbase-lite-ios/DerivedData/CouchbaseLite/Build/Products/Debug-ios-universal/CouchbaseLite.framework CouchbaseLite.framework
3. Then do the drag & drop of theCouchbaseLite.framework
symlink from the Finder window into your Xcode project window's Framework group and follow rest of the instructions below as usual. TheCopy items into destination group's folder (if needed)
andCreate groups for any added folders
can/should stay selected and it will work properly. NO it will NOT follow the reference of the symlink to make a copy ... that won't happen, so relax. - In the window that appears, make sure the checkbox next to your app's target is checked.
- For an iOS or tvOS target:
- Go to the "Build Settings" tab of your app target's settings.
- Find the "Other Linker Flags" row in the "Linker" section, and add the flag
-ObjC
. (Note the capitalization.) - Go to the "Build Phases" tab of the app target's settings.
- In the "Link Binary with Libraries" section, click the plus button and add
CFNetwork.framework
,Security.framework
,SystemConfiguration.framework
,libsqlite3.dylib
andlibz.dylib
. - For a Mac OS target, you'll need to make sure the framework is copied into your app's bundle:
- To to the "Build Settings" tab of your app target's settings.
- In the "Linker" section, edit "Runpath Search Paths" and add the path "
@loader_path/../Frameworks
". - Now switch to to the "Build Phases" tab.
- Press the "Add Build Phase" button at the bottom of the window and create a new "Copy Files" phase.
- Set the phase's destination to "Frameworks".
- Press the "+" button below the phases' file list and select CouchbaseLite.framework to add it.