summaryrefslogtreecommitdiffstats
path: root/test/CacheDir/invalid_custom_cachedir_fixture/SConstruct
blob: 78f1bc6e2eda8b31ef9ec685030fabc5fdda6129 (plain)
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'))