Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an scons project that force includes several header files as a compiler flag.

# Forced include files passed directly to the compiler
env.Append(CCFLAGS = ['/FIinclude.h'])

These files are not included by any files in the project. I need to add an explicit dependency for them.

forced_include_headers = ['include.h']

# Trying to add an explicit dependency for each build target
for object in BUILD_TARGETS:
  env.Depends(object, forced_include_headers)

The problem I'm running into is that BUILD_TARGETS list is empty. It seems to only contain things passed from COMMAND_LINE_TARGETS or DEFAULT_TARGETS. All of the targets in our project are built implicitly. We do not make use of env.Default, etc. Is there a way to get the implicit target list, or do I have to manually build it? I noticed that TARGETS is reserved and does not seem to contain what I want either.

I can add an env.Depends(target, forced_include_headers) for all of the targets in their respective SConscript files, but the project is quite large.

share|improve this question
I ended up solving this by calling a psuedo-builder for every target in the project (needed to do this anyway). The dependency is added in the call to the psuedo-builder. – tank_pd Jun 16 '11 at 21:40

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.