ct_
ct_

Reputation: 1229

getting compilation order from SCons

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

Answers (1)

Torsten
Torsten

Reputation: 24156

You can use scons command-line parameter --no-exec would only print build commands but not execute them.

Upvotes: 1

Related Questions