summaryrefslogtreecommitdiffstats
path: root/test/toolpath/relative_import/image/SConstruct
blob: c9b28bb1de121ad70190b329f119642950b49b58 (plain)
1
2
3
4
5
6
7
8
9
10
env = Environment(tools=['TestTool1', 'TestTool1.TestTool1_2'], toolpath=['tools'])

# Test a relative import within the root of the tools directory
print("env['TestTool1'] = %s"%env.get('TestTool1'))
print("env['TestTool1_1'] = %s"%env.get('TestTool1_1'))

# Test a relative import within a sub dir
print("env['TestTool1_2'] = %s"%env.get('TestTool1_2'))
print("env['TestTool1_2_1'] = %s"%env.get('TestTool1_2_1'))
print("env['TestTool1_2_2'] = %s"%env.get('TestTool1_2_2'))