From 5a2c04ad0fa3e55dfa286776d0cfdd268752527e Mon Sep 17 00:00:00 2001 From: Steven Knight Date: Mon, 10 Nov 2008 05:25:31 +0000 Subject: Windows portability: Avoid duplicate foo.lib targets by telling env.SharedLibrary() to not build an import library. --- test/option/debug-includes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/option/debug-includes.py b/test/option/debug-includes.py index 41e5a84..de9b288 100644 --- a/test/option/debug-includes.py +++ b/test/option/debug-includes.py @@ -47,7 +47,7 @@ env = Environment(OBJSUFFIX = '.obj', ) env.Program('foo.exe', ['foo.c', 'bar.c']) env.StaticLibrary('foo', ['foo.c', 'bar.c']) -env.SharedLibrary('foo', ['foo.c', 'bar.c']) +env.SharedLibrary('foo', ['foo.c', 'bar.c'], no_import_lib=True) """) test.write('foo.c', r""" -- cgit v0.12