1 2 3 4 5 6 7 8 9 10 11
# SPDX-License-Identifier: MIT # # Copyright The SCons Foundation class CustomCacheDir: pass DefaultEnvironment(tools=[]) env = Environment(tools=[]) env.CacheDir('cache', CustomCacheDir) env.Command('file.out', 'file.in', Copy('$TARGET', '$SOURCE'))