2011-12-06 18:18:42 +01:00
|
|
|
Kivy for IOS
|
|
|
|
============
|
|
|
|
|
|
|
|
(This is a work in progress.)
|
|
|
|
|
2012-07-07 22:19:36 +02:00
|
|
|
#. Using brew, you can install dependencies::
|
|
|
|
|
2012-07-18 19:52:01 +02:00
|
|
|
brew install autoconf automake libtool pkg-config mercurial
|
2012-07-07 22:19:36 +02:00
|
|
|
brew link libtool
|
|
|
|
brew link mercurial
|
|
|
|
|
2012-12-14 00:54:05 +01:00
|
|
|
#. Install Cython::
|
2012-07-18 19:52:11 +02:00
|
|
|
|
2012-12-14 00:54:05 +01:00
|
|
|
# easy-install method
|
|
|
|
sudo easy_install cython
|
|
|
|
|
|
|
|
# pip method if available (sudo might be needed.)
|
2012-07-18 19:52:01 +02:00
|
|
|
pip install cython
|
|
|
|
|
2013-05-05 04:19:08 +02:00
|
|
|
#. Build the whole toolchain with `tools/build-all.sh`
|
2012-04-18 03:06:31 +02:00
|
|
|
#. Create an Xcode project for your application with `tools/create-xcode-project.sh test /path/to/app`
|
2012-04-18 02:58:40 +02:00
|
|
|
#. Open your newly created Xcode project
|
|
|
|
#. Ensure code signing is setup correctly
|
2012-03-09 02:48:27 +01:00
|
|
|
#. Click on play
|
2012-04-18 02:58:40 +02:00
|
|
|
|
|
|
|
Notes
|
|
|
|
-----
|
|
|
|
|
2012-04-18 03:06:31 +02:00
|
|
|
A build phase is added to the project that processes and moves your
|
|
|
|
app's files to the Xcode project before every build. If you would like
|
|
|
|
to handle this process manually, remove the "Run Script" build phase
|
|
|
|
from your target and use `tools/populate-project.sh /path/to/app`
|
|
|
|
after every change. You can also change the path to your app by modifying this build phase.
|