tags:

views:

64

answers:

1

I'm not quite sure how to do this...

I want to declare some kind of action in an SConscript file:

Import('env');
arguments = ['foo','bar','baz'];
phantomTarget = env.DoSomething(arguments);
Return('phantomTarget');

and in the SConstruct file:

env['BUILDERS']['DoSomething'] = Builder(action='c:/foodir/foo.exe $ARGUMENTS');

   ...

phantomTarget = SConscript(['doc/SConscript']);
env.Alias('foo', phantomTarget);

so that at the command line I can type

scons foo

and it will run

c:/foodir/foo.exe foo bar baz

I can't seem to do this... scons wants to do dependency checking and I don't want to do that in this case :/

+4  A: 

Depending on what error you're seeing, maybe PhonyTargets will help?

Dave Bacher
cool, that looks like it would work. I'll try it....
Jason S