1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-15 15:11:12 +02:00

Update lilv, lv2, serd, sord, sratom, and add suil.

This commit is contained in:
yam
2015-04-07 23:19:22 -05:00
parent f88b27e6d8
commit 57fb87e96d
1460 changed files with 64512 additions and 10876 deletions

View File

@@ -14,8 +14,9 @@ re_2=re.compile('%include "(.*)"',re.M)
re_3=re.compile('#include "(.*)"',re.M)
class swig(Task.Task):
color='BLUE'
run_str='${SWIG} ${SWIGFLAGS} ${SWIGPATH_ST:INCPATHS} ${DEFINES_ST:DEFINES} ${SRC}'
run_str='${SWIG} ${SWIGFLAGS} ${SWIGPATH_ST:INCPATHS} ${SWIGDEF_ST:DEFINES} ${SRC}'
ext_out=['.h']
vars=['SWIG_VERSION','SWIGDEPS']
def runnable_status(self):
for t in self.run_after:
if not t.hasrun:
@@ -116,3 +117,4 @@ def check_swig_version(self):
def configure(conf):
swig=conf.find_program('swig',var='SWIG')
conf.env.SWIGPATH_ST='-I%s'
conf.env.SWIGDEF_ST='-D%s'