diff options
author | Gary Oberbrunner <garyo@oberbrunner.com> | 2013-08-25 13:51:55 (GMT) |
---|---|---|
committer | Gary Oberbrunner <garyo@oberbrunner.com> | 2013-08-25 13:51:55 (GMT) |
commit | d9ee0920aa8f861e326ffb8278661de58dacbac8 (patch) | |
tree | be1b724d5da507ac34721397b08f94d3e1d4151a /test/LINK | |
parent | 96119bccc3252d27798353a07fe4b52eaff17efb (diff) | |
parent | 6d7f7a2a743436e65432c6b2ed1037c7c4ad2477 (diff) | |
download | SCons-d9ee0920aa8f861e326ffb8278661de58dacbac8.zip SCons-d9ee0920aa8f861e326ffb8278661de58dacbac8.tar.gz SCons-d9ee0920aa8f861e326ffb8278661de58dacbac8.tar.bz2 |
Merge pull request #84, cyglink tool from David Rothenberger.
Also updated src/CHANGES.txt.
Diffstat (limited to 'test/LINK')
-rw-r--r-- | test/LINK/VersionedLib.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/LINK/VersionedLib.py b/test/LINK/VersionedLib.py index 0d45789..3c92252 100644 --- a/test/LINK/VersionedLib.py +++ b/test/LINK/VersionedLib.py @@ -98,6 +98,18 @@ elif platform == 'darwin': 'libtest.dylib',
'libtest.2.5.4.dylib',
]
+elif platform == 'cygwin':
+ # All (?) the files we expect will get created in the current directory
+ files = [
+ 'cygtest-2-5-4.dll',
+ 'libtest-2-5-4.dll.a',
+ 'test.os',
+ ]
+ # All (?) the files we expect will get created in the 'installtest' directory
+ instfiles = [
+ 'cygtest-2-5-4.dll',
+ 'libtest-2-5-4.dll.a',
+ ]
elif platform == 'win32':
# All (?) the files we expect will get created in the current directory
files = [
|