How can I tell Scons to exclude some files from build sources.
I have all files in folder called src. Following is my code snippet which include files for build.
env = Environment()
env.Program(target='project’, source=[Glob(’src/*.cpp’)] )
Thanks in advance