diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2004-12-19 05:10:46 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2004-12-19 05:10:46 +0000 |
commit | 1a8a5f119d8dc4e8b8f54867f419a2244468d4ef (patch) | |
tree | b9cb67f612c8a11428d764f6fae10f41161b6f74 /externals/grill/vst/build | |
parent | 1b56c59a0aec948ff76dac8a4a99be34d24f163f (diff) |
updated make system
svn path=/trunk/; revision=2414
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
|