summaryrefslogtreecommitdiff
path: root/libs/fst
diff options
context:
space:
mode:
authorDoug McLain <doug@nostar.net>2006-11-28 19:22:31 +0000
committerDoug McLain <doug@nostar.net>2006-11-28 19:22:31 +0000
commitc371600816bd50d519f76bafd228e12b7f1b42a6 (patch)
tree9e6bcbe472e430f1db5bdf96596de0f7992080f5 /libs/fst
parent6f4f716058aa34639aa5a61bb11f556d29494f52 (diff)
A bit better integration of vst sdk files
git-svn-id: svn://localhost/ardour2/trunk@1165 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/fst')
-rw-r--r--libs/fst/SConscript16
1 files changed, 7 insertions, 9 deletions
diff --git a/libs/fst/SConscript b/libs/fst/SConscript
index 771de86dc8..5ee2fc8a16 100644
--- a/libs/fst/SConscript
+++ b/libs/fst/SConscript
@@ -11,22 +11,20 @@ Import('env install_prefix')
fst = env.Copy(CC="winegcc")
fst.Append (CPPPATH=".")
-hackSDK = fst.Command('vst/aeffectx.h', 'vstsdk2.3/source/common/aeffectx.h', [
- Delete ('${TARGET.dir}'),
- Copy ('${TARGET.dir}', '${SOURCE.dir}'),
- "sed -i '/struct VstFileType\|struct VstFileSelect/,/};/d' $TARGET"
-])
-
a = fst.Object ('fst', 'fst.c')
b = fst.Object ('fstinfofile', 'fstinfofile.c')
c = fst.Object ('vstwin', 'vstwin.c')
d = fst.Object ('vsti', 'vsti.c')
if fst['VST']:
- if os.access ('vst/aeffectx.h', os.F_OK):
- Default([hackSDK,a,b,c,d])
+ if os.access ('vstsdk2.3.zip', os.F_OK):
+ fst.Execute ("unzip -o vstsdk2.3.zip")
+ fst.Execute (Delete ("vst"))
+ fst.Execute (Copy ("vst", "vstsdk2.3/source/common"))
+ fst.Execute ("sed -i '/struct VstFileType\|struct VstFileSelect/,/};/d' vst/aeffectx.h")
+ Default([a,b,c,d])
else:
- print 'You have not installed the VST SDK in the correct location.'
+ print 'Did not find libs/fst/vstsdk2.3.zip. Make sure the file is in the correct location and correctly named'
print 'Please see http://ardour.org/building_vst_support for more information'
sys.exit (1)