diff options
| author | pepper <pepper@chimecrisis.com> | 2015-01-31 21:41:28 -0800 |
|---|---|---|
| committer | pepper <pepper@chimecrisis.com> | 2015-01-31 21:41:28 -0800 |
| commit | 97587996ee9db30ce00190bdcedd8210490b99f5 (patch) | |
| tree | d8554969ac496be3a1b02a159f2a4b5b79f9492e /vstgui.sf/drawtest/mac/drawtest.plc | |
backup vst 2.4
Diffstat (limited to 'vstgui.sf/drawtest/mac/drawtest.plc')
| -rw-r--r-- | vstgui.sf/drawtest/mac/drawtest.plc | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/vstgui.sf/drawtest/mac/drawtest.plc b/vstgui.sf/drawtest/mac/drawtest.plc new file mode 100644 index 0000000..5240045 --- /dev/null +++ b/vstgui.sf/drawtest/mac/drawtest.plc @@ -0,0 +1,40 @@ +#define stringEffectName __OUTPUT_FILENAME__ +#define stringVersion "1.0.0.0" +#define stringCopyright "© Arne Scheffler 2004" + + +#ifndef stringEffectName +#error "You need to set stringEffectName" +#endif +#ifndef stringVersion +#error "You need to set stringVersion" +#endif +#ifndef stringCopyright +#error "You need to set stringCopyright" +#endif + +#define BUNDLE_NAME stringEffectName +#define BUNDLE_COPYRIGHT stringCopyright +#define BUNDLE_VERSION stringVersion +#define BUNDLE_IDENTIFIER "com.steinberg." BUNDLE_NAME +#define BUNDLE_ICON "commonIcon" + + +plist +{ + dictionary + { + key "CFBundleInfoDictionaryVersion" value string "6.0" + key "CFBundleDevelopmentRegion" value string "English" + key "CFBundleName" value string BUNDLE_NAME + key "CFBundleIdentifier" value string BUNDLE_IDENTIFIER + key "CFBundleGetInfoString" value string BUNDLE_NAME " " BUNDLE_VERSION ", " BUNDLE_COPYRIGHT + key "CFBundleShortVersionString" value string BUNDLE_VERSION + key "CFBundleExecutable" value string __OUTPUT_FILENAME__ + key "CFBundlePackageType" value string __OUTPUT_TYPE__ + key "CFBundleSignature" value string __OUTPUT_CREATOR__ + key "CFBundleBuildDate" value string __DATE__ + key "CFBundleIconFile" value string BUNDLE_ICON + key "VSTWindowCompositing" value boolean true + } +} |
