diff options
Diffstat (limited to 'externals/grill/vst/build')
-rw-r--r-- | externals/grill/vst/build/config-mac.def | 6 | ||||
-rw-r--r-- | externals/grill/vst/build/config-win.def | 3 | ||||
-rw-r--r-- | externals/grill/vst/build/makefile-mac-gcc.inc | 3 | ||||
-rw-r--r-- | externals/grill/vst/build/makefile-win-msvc.inc | 2 | ||||
-rw-r--r-- | externals/grill/vst/build/package.txt | 11 |
5 files changed, 25 insertions, 0 deletions
diff --git a/externals/grill/vst/build/config-mac.def b/externals/grill/vst/build/config-mac.def new file mode 100644 index 00000000..d08c7122 --- /dev/null +++ b/externals/grill/vst/build/config-mac.def @@ -0,0 +1,6 @@ + + + +# where is the VST SDK?
+# (at least version 2.3)
+VSTSDKPATH=/Volumes/Daten/Prog/packs/vstsdk2.3
diff --git a/externals/grill/vst/build/config-win.def b/externals/grill/vst/build/config-win.def new file mode 100644 index 00000000..a00f9dac --- /dev/null +++ b/externals/grill/vst/build/config-win.def @@ -0,0 +1,3 @@ +# where is the VST SDK?
+# (at least version 2.3)
+VSTSDKPATH=c:\data\prog\audio\vstsdk2.3
diff --git a/externals/grill/vst/build/makefile-mac-gcc.inc b/externals/grill/vst/build/makefile-mac-gcc.inc new file mode 100644 index 00000000..6ecd3681 --- /dev/null +++ b/externals/grill/vst/build/makefile-mac-gcc.inc @@ -0,0 +1,3 @@ +INCPATH=-I$(VSTSDKPATH)/source/common
+ +
diff --git a/externals/grill/vst/build/makefile-win-msvc.inc b/externals/grill/vst/build/makefile-win-msvc.inc new file mode 100644 index 00000000..1c8281d5 --- /dev/null +++ b/externals/grill/vst/build/makefile-win-msvc.inc @@ -0,0 +1,2 @@ +INCPATH=/I$(VSTSDKPATH)\source\common
+LIBS=user32.lib
diff --git a/externals/grill/vst/build/package.txt b/externals/grill/vst/build/package.txt new file mode 100644 index 00000000..bd1da0e9 --- /dev/null +++ b/externals/grill/vst/build/package.txt @@ -0,0 +1,11 @@ +NAME=vst~
+
+THREADED=1
+HAVECONFIG=1
+HAVEMAKE=1
+
+SRCDIR=src
+
+SRCS=main.cpp vsthost.cpp editor.cpp
+
+HDRS=main.h vsthost.h editor.h editorwin.hpp editormac.hpp
|