Skip to content
Snippets Groups Projects
Commit ceaac7f0 authored by jdh8d's avatar jdh8d
Browse files

No commit message

No commit message
parent 00e06192
No related branches found
No related tags found
No related merge requests found
import os
print "In libIRDB/tests/SConscript"
Import('env')
env.Replace(SECURITY_TRANSFORMS_HOME=os.environ['SECURITY_TRANSFORMS_HOME'])
myenv=env.Clone()
myenv.Replace(SECURITY_TRANSFORMS_HOME=os.environ['SECURITY_TRANSFORMS_HOME'])
cpppath='''
$SECURITY_TRANSFORMS_HOME/include
......@@ -21,10 +21,9 @@ pgm="selective_cfi.exe"
LIBPATH="$SECURITY_TRANSFORMS_HOME/lib"
LIBS=Split("IRDB-core IRDB-cfg IRDB-util pqxx BeaEngine_s_d transform rewrite MEDSannotation")
env=env.Clone(CPPPATH=Split(cpppath))
pgm=env.Program(pgm, files, LIBPATH=LIBPATH, LIBS=LIBS)
install=env.Install("$SECURITY_TRANSFORMS_HOME/bin/", pgm)
env.Alias("install", "$SECURITY_TRANSFORMS_HOME/bin/")
myenv=myenv.Clone(CPPPATH=Split(cpppath))
pgm=myenv.Program(pgm, files, LIBPATH=LIBPATH, LIBS=LIBS)
install=myenv.Install("$SECURITY_TRANSFORMS_HOME/bin/", pgm)
Default(install)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment