diff options
Diffstat (limited to 'test/D/HSTeoh/LibCompileOptions/SConstruct_template')
-rw-r--r-- | test/D/HSTeoh/LibCompileOptions/SConstruct_template | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/D/HSTeoh/LibCompileOptions/SConstruct_template b/test/D/HSTeoh/LibCompileOptions/SConstruct_template new file mode 100644 index 0000000..7031f5c --- /dev/null +++ b/test/D/HSTeoh/LibCompileOptions/SConstruct_template @@ -0,0 +1,9 @@ +env = Environment({}) + +env.Library('mylib', 'mylib.d') + +prog_env = env.Clone( + LIBS = ['mylib'], + LIBPATH = '#' + ) +prog_env.Program('prog', 'prog.d') |