summaryrefslogtreecommitdiff
path: root/Tests/Complex
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-10-05 15:08:20 -0400
committerBrad King <brad.king@kitware.com>2006-10-05 15:08:20 -0400
commit7ad07e081110923483ae6b428c469a12408ef87d (patch)
tree6f369b445e6ada954464596c952dbae4c094fa6c /Tests/Complex
parent7e92f0b4e449057bff26579596ccd11ee8c3c7e3 (diff)
downloadcmake-7ad07e081110923483ae6b428c469a12408ef87d.tar.gz
BUG: Fix link flags on cygwin shared libraries. This requires that the shared library prefix be supported in the link library regex.
Diffstat (limited to 'Tests/Complex')
-rw-r--r--Tests/Complex/Executable/complex.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Complex/Executable/complex.cxx b/Tests/Complex/Executable/complex.cxx
index 759cfd9375..273e8a267a 100644
--- a/Tests/Complex/Executable/complex.cxx
+++ b/Tests/Complex/Executable/complex.cxx
@@ -108,7 +108,7 @@ bool TestLibraryOrder(bool shouldFail)
orderLibs.DebugOn();
orderLibs.AddLinkExtension(".so");
orderLibs.AddLinkExtension(".a");
- orderLibs.SetLinkPrefix("lib");
+ orderLibs.AddLinkPrefix("lib");
cmTargetManifest manifest;
orderLibs.SetLinkInformation("test", linkLibraries, linkDirectories,
manifest, "");