mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-29 09:57:44 +01:00
better error message if VST SDK is not installed and neeed
git-svn-id: svn://localhost/ardour2/trunk@1080 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
c860d925da
commit
e9604e2173
7 changed files with 29 additions and 11 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