Skip to content
Snippets Groups Projects
Commit 5e891f9f authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

reworking scons file for pedi insanity

parent cf484f94
No related branches found
No related tags found
No related merge requests found
......@@ -57,12 +57,13 @@ lib=myenv.SharedLibrary("unpin", Split(files))
install=myenv.Install("$ZIPR_INSTALL/plugins/", lib)
Default(install)
pedi = Command( target = "./testoutput",
source = "./SConscript",
action = "cd "+os.environ['ZIPR_INSTALL']+" ; " +os.environ['PEDI_HOME']+"/pedi -m manifest.txt ; cd -" )
Default( pedi )
ret=[install,lib]
pedi = Command( target = "./unpin-testoutput",
source = install,
action = "cd "+os.environ['ZIPR_INSTALL']+" ; " +os.environ['PEDI_HOME']+"/pedi -m manifest.txt ; cd -" )
ret=pedi+lib
if Dir('.').abspath == Dir('#.').abspath:
ret=ret+pedi
Default( ret )
Return('ret')
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