我想在子目录中构建所有.c文件。我想我会做这样的事情:
src/foo/SConscript
包含:
import glob;
here = Dir('.');
sourcefiles_raw = glob.glob(here.path+'/*.c');
print(sourcefiles_raw);
# print them for debugging
# ... then build them (in the process, making scons aware of dependencies)
src/SConscript
包含:
SConscript(['foo/SConscript']);
SConstruct
包含:
SConscript(['src/SConscript'],build_dir='build');
但它打印[]
,因为glob.glob()
在目录build/foo
中运行,之后scons可以决定哪些源文件需要从src/foo
复制到build/foo
。
我该如何解决这个问题?