source: doc/xcode_frameworks.rst @ 40dd715

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 40dd715 was 40dd715, checked in by Paul Brossier <piem@piem.org>, 8 years ago

doc/xcode_frameworks.rst: added page on xcode frameworks

  • Property mode set to 100644
File size: 889 bytes
RevLine 
[40dd715]1.. _xcode-frameworks-label:
2
3Using aubio frameworks in Xcode
4-------------------------------
5
6`Binary frameworks`_ are available and ready to use in your XCode project, for
7`iOS`_ and `macOS`_.
8
9#. Download the ``framework.zip`` file from the `Download`_ page.
10
11#. Select 'Build Phases' in your project settings
12
13#. Unfold the 'Link Binary with Libraries' list, and add 'AudioToolbox and
14   Accelerate frameworks
15
16#. Also add ``aubio.framework`` from https://aubio.org/download.
17
18#. Include the aubio header in your code:
19
20  * in C/C++:
21
22  .. code-block:: c
23
24    #include <aubio/aubio.h>
25
26  * in Obj-C:
27
28  .. code-block:: obj-c
29
30    #import <aubio/aubio.h>
31
32  * in Swift:
33
34  .. code-block:: swift
35
36    import aubio
37
38.. _Binary frameworks: https://aubio.org/download
39.. _iOS: https://aubio.org/download#ios
40.. _macOS: https://aubio.org/download#osx
41.. _Download: https://aubio.org/download
Note: See TracBrowser for help on using the repository browser.