Mercurial > hg > vamp-plugin-sdk
comparison build/README.osx @ 334:c70e1ceb1eff
Move Makefile.osx across to .osx.106 and create a new one for the 10.7 / Xcode 4 tools
author | Chris Cannam |
---|---|
date | Fri, 29 Jun 2012 15:20:37 +0100 |
parents | 2fc6456b1c71 |
children | 14b34e85523b |
comparison
equal
deleted
inserted
replaced
333:ea5d9dbaeaf7 | 334:c70e1ceb1eff |
---|---|
1 | 1 |
2 The Vamp Plugin SDK -- Platform Notes for OS/X | 2 The Vamp Plugin SDK -- Platform Notes for OS/X |
3 ============================================== | 3 ============================================== |
4 | |
5 Prerequisites | |
6 ------------- | |
7 | |
8 You must have Xcode installed, with the command-line build tools. | |
9 | |
10 (If you are using Xcode 4, you may have to go to Preferences -> | |
11 Downloads -> Components and install the Command Line Tools component.) | |
12 | |
13 You must have libsndfile (http://www.mega-nerd.com/libsndfile/) | |
14 installed in order to build the command-line host successfully. But | |
15 you do not need libsndfile if you only want to build plugins. | |
16 | |
4 | 17 |
5 Building at the command line | 18 Building at the command line |
6 ---------------------------- | 19 ---------------------------- |
7 | 20 |
8 To build the SDK, example plugins, and command-line host: | 21 To build the SDK, example plugins, and command-line host: |
9 | 22 |
10 $ make -f build/Makefile.osx | 23 $ make -f build/Makefile.osx |
11 | 24 |
12 You must have libsndfile (http://www.mega-nerd.com/libsndfile/) | 25 To build only the SDK and example plugins (for example if you do not |
13 installed in order to build the command-line host successfully. To | 26 have libsndfile installed): |
14 build only the SDK and examples: | |
15 | 27 |
16 $ make -f build/Makefile.osx sdk examples | 28 $ make -f build/Makefile.osx sdk examples |
17 | 29 |
18 See the comments at the top of Makefile.osx for more information about | 30 See the comments at the top of Makefile.osx for more information about |
19 the libraries and other targets that are built in this way. | 31 the libraries and other targets that are built in this way. |
20 | 32 |
21 If you are using an IDE, you may prefer to simply add the vamp-sdk and | 33 If you are using an IDE such as Xcode, you may prefer to simply add |
22 src/vamp-sdk (for plugins) or vamp-hostsdk and src/vamp-hostsdk (for | 34 the vamp-sdk and src/vamp-sdk (for plugins) or vamp-hostsdk and |
23 hosts) directories to your existing project. | 35 src/vamp-hostsdk (for hosts) directories to your existing project. |
36 | |
37 If you are using OS/X 10.6 or older, use Makefile.osx.106 instead of | |
38 Makefile.osx. | |
24 | 39 |
25 | 40 |
26 Installing the Example Plugins | 41 Installing the Example Plugins |
27 ------------------------------ | 42 ------------------------------ |
28 | 43 |