mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-30 10:27:44 +01:00
Merged with trunk R1141
git-svn-id: svn://localhost/ardour2/branches/midi@1142 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
af105afe6c
commit
ef6b25432d
209 changed files with 21004 additions and 6768 deletions
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
import os
|
||||
import os.path
|
||||
import sys
|
||||
import glob
|
||||
|
||||
fst_src = glob.glob('*.c')
|
||||
|
|
@ -22,7 +23,12 @@ c = fst.Object ('vstwin', 'vstwin.c')
|
|||
d = fst.Object ('vsti', 'vsti.c')
|
||||
|
||||
if fst['VST']:
|
||||
Default([hackSDK,a,b,c,d])
|
||||
if os.access ('vst/aeffectx.h', os.F_OK):
|
||||
Default([hackSDK,a,b,c,d])
|
||||
else:
|
||||
print 'You have not installed the VST SDK in the correct location.'
|
||||
print 'Please see http://ardour.org/building_vst_support for more information'
|
||||
sys.exit (1)
|
||||
|
||||
env.Alias('tarball', env.Distribute (env['DISTTREE'],
|
||||
fst_src + ['SConscript',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue