Skip to content
Snippets Groups Projects
SConscript.deep 368 B
Newer Older
import os

Import('env')


env['BASE_IRDB_LIBS']="irdb-core", "pqxx", "pq"

libIRDBdeep=env.SConscript("libIRDB-deep/src/SConscript")

pedi = Command( target = "./deep-testoutput",
		source = libIRDBdeep,
		action = os.environ['PEDI_HOME']+"/pedi -m manifest.txt " )
ret=libIRDBdeep
if Dir('.').abspath == Dir('#.').abspath:
	ret=ret+pedi
Default(ret)
Return('ret')