1//------------------------------------------------------------------------
2// Project     : VST SDK
3//
4// Category    : Helpers
5// Filename    : public.sdk/source/vst/auwrapper/again/Info.plist
6// Created by  : Steinberg, 12/2007
7// Description : VST 3 -> AU Wrapper
8//
9//-----------------------------------------------------------------------------
10// LICENSE
11// (c) 2018, Steinberg Media Technologies GmbH, All Rights Reserved
12//-----------------------------------------------------------------------------
13// Redistribution and use in source and binary forms, with or without modification,
14// are permitted provided that the following conditions are met:
15//
16//   * Redistributions of source code must retain the above copyright notice,
17//     this list of conditions and the following disclaimer.
18//   * Redistributions in binary form must reproduce the above copyright notice,
19//     this list of conditions and the following disclaimer in the documentation
20//     and/or other materials provided with the distribution.
21//   * Neither the name of the Steinberg Media Technologies nor the names of its
22//     contributors may be used to endorse or promote products derived from this
23//     software without specific prior written permission.
24//
25// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
26// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
27// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28// IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
29// INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
32// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
33// OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE  OF THIS SOFTWARE, EVEN IF ADVISED
34// OF THE POSSIBILITY OF SUCH DAMAGE.
35//-----------------------------------------------------------------------------
36
37#include "audiounitconfig.h"
38
39<?xml version="1.0" encoding="UTF-8"?>
40<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
41<plist version="1.0">
42<dict>
43	<key>CFBundleDevelopmentRegion</key>
44	<string>English</string>
45	<key>CFBundleExecutable</key>
46	<string>$(EXECUTABLE_NAME)</string>
47	<key>CFBundleIdentifier</key>
48	<string>kAudioUnitBundleIdentifier</string>
49	<key>CFBundleName</key>
50	<string>$(PRODUCT_NAME)</string>
51	<key>CFBundleInfoDictionaryVersion</key>
52	<string>6.0</string>
53	<key>CFBundlePackageType</key>
54	<string>BNDL</string>
55	<key>CFBundleSignature</key>
56	<string>????</string>
57	<key>CFBundleVersion</key>
58	<string>1.0</string>
59	<key>CSResourcesFileMapped</key>
60	<string>yes</string>
61
62	/*
63		The "AudioUnit SupportedNumChannels" key is only necessary if you build an effect not an instrument.
64		You should describe all supported channel configurations.
65		This example says that it supports Stereo/Stereo or Mono/Mono.
66	*/
67
68	<key>AudioUnit SupportedNumChannels</key>
69	<array>
70		<dict>
71			<key>Outputs</key>
72			<string>2</string>
73			<key>Inputs</key>
74			<string>2</string>
75		</dict>
76		<dict>
77			<key>Outputs</key>
78			<string>0</string>
79			<key>Inputs</key>
80			<string>1</string>
81		</dict>
82		<dict>
83			<key>Outputs</key>
84			<string>1</string>
85			<key>Inputs</key>
86			<string>1</string>
87		</dict>
88	</array>
89
90	<key>AudioUnit Version</key>
91	<string>kAudioUnitVersion</string>
92
93	/*
94		Support for the new AUPlugIn model in Mac OS X 10.7
95	*/
96	<key>AudioComponents</key>
97	<array>
98		<dict>
99			<key>description</key>
100			<string>kAUPluginDescription</string>
101			<key>factoryFunction</key>
102			<string>AUWrapperFactory</string>
103			<key>manufacturer</key>
104			<string>kAUPluginManufacturer</string>
105			<key>name</key>
106			<string>kAUPluginName</string>
107			<key>subtype</key>
108			<string>kAUPluginSubType</string>
109			<key>type</key>
110			<string>kAUPluginType</string>
111			<key>version</key>
112			<integer>kAudioUnitVersion</integer>
113		</dict>
114	</array>
115
116</dict>
117</plist>
118