scons_gd/scons/test/CacheDir/invalid_custom_cachedir_fixture/SConstruct

6 lines
160 B
Python
Raw Normal View History

2022-10-15 16:06:26 +02:00
class CustomCacheDir:
pass
env = Environment(tools=[])
env.CacheDir('cache', CustomCacheDir)
env.Command('file.out', 'file.in', Copy('$TARGET', '$SOURCE'))