summaryrefslogtreecommitdiff
path: root/vendor/vstsdk2.4/vstgui.sf/drawtest/mac/drawtest.plc
diff options
context:
space:
mode:
authorpepper <peppersclothescult@gmail.com>2015-01-10 21:37:24 -0800
committerpepper <peppersclothescult@gmail.com>2015-01-10 21:37:24 -0800
commit58f8437f4b8b741ddc8e7bcde21bf983cc618430 (patch)
treebfd0a9d601274fe56de15a4eaeb0998f9481419d /vendor/vstsdk2.4/vstgui.sf/drawtest/mac/drawtest.plc
parent36773a28ece1641a2d827a29869cdd4c38e87925 (diff)
added vstsdkHEADmaster
Diffstat (limited to 'vendor/vstsdk2.4/vstgui.sf/drawtest/mac/drawtest.plc')
-rw-r--r--vendor/vstsdk2.4/vstgui.sf/drawtest/mac/drawtest.plc40
1 files changed, 40 insertions, 0 deletions
diff --git a/vendor/vstsdk2.4/vstgui.sf/drawtest/mac/drawtest.plc b/vendor/vstsdk2.4/vstgui.sf/drawtest/mac/drawtest.plc
new file mode 100644
index 0000000..5240045
--- /dev/null
+++ b/vendor/vstsdk2.4/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
+ }
+}