## SConstruct: defines the used SourceFiles and the TargetFile # REMARKS: * no extension (e.g. .dll) is needed-> taken care by scons Import('env') TargetFile = 'blitz' SourceFiles = ['globals.cpp'] blitz = env.StaticLibrary(target = TargetFile,source = SourceFiles)