diff options
Diffstat (limited to 'test/D/MixedDAndC/Image/SConstruct')
-rw-r--r-- | test/D/MixedDAndC/Image/SConstruct | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/D/MixedDAndC/Image/SConstruct b/test/D/MixedDAndC/Image/SConstruct new file mode 100644 index 0000000..47870d7 --- /dev/null +++ b/test/D/MixedDAndC/Image/SConstruct @@ -0,0 +1,13 @@ +# -*- codig:utf-8; -*- + +import os + +environment = Environment( + ENV=os.environ, + DFLAGS=['-m64', '-O']) + +environment.Program('proj', [ +'proj.d', +'dmod.d', +'cmod.c', +]) |