Reputation: 1229
Is there a quick way to get the order that SCons will process your program's files?
I'd like to snag the ordered list of program file names and skip the compilation process.
thanks in advance!
Upvotes: 0
Views: 83
Reputation: 24156
You can use scons command-line parameter --no-exec
would only print build commands but not execute them.
Upvotes: 1