summaryrefslogtreecommitdiffstats
path: root/test/D/Issues/2939_Ariovistus/Project/SConstruct_template
blob: c78ba96813bd18035934ee354347d4e228b4cf1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from os.path import join

environment = Environment({})

import os
environment['ENV']['HOME'] = os.environ['HOME']  # Hack for gdmd

Export('environment')

environment.SConscript([
    join("test","test1", "SConscript"),
]);