mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-02-20 17:24:23 +01:00
6 lines
160 B
Python
6 lines
160 B
Python
|
class CustomCacheDir:
|
||
|
pass
|
||
|
|
||
|
env = Environment(tools=[])
|
||
|
env.CacheDir('cache', CustomCacheDir)
|
||
|
env.Command('file.out', 'file.in', Copy('$TARGET', '$SOURCE'))
|