[cmake-commits] king committed complex.cxx 1.87 1.88

cmake-commits at cmake.org cmake-commits at cmake.org
Thu Oct 5 15:08:22 EDT 2006


Update of /cvsroot/CMake/CMake/Tests/Complex/Executable
In directory public:/mounts/ram/cvs-serv9150/Tests/Complex/Executable

Modified Files:
	complex.cxx 
Log Message:
BUG: Fix link flags on cygwin shared libraries.  This requires that the shared library prefix be supported in the link library regex.


Index: complex.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Tests/Complex/Executable/complex.cxx,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -d -r1.87 -r1.88
--- complex.cxx	22 Sep 2006 15:49:56 -0000	1.87
+++ complex.cxx	5 Oct 2006 19:08:20 -0000	1.88
@@ -108,7 +108,7 @@
   orderLibs.DebugOn();
   orderLibs.AddLinkExtension(".so");
   orderLibs.AddLinkExtension(".a");
-  orderLibs.SetLinkPrefix("lib");
+  orderLibs.AddLinkPrefix("lib");
   cmTargetManifest manifest;
   orderLibs.SetLinkInformation("test", linkLibraries, linkDirectories,
                                manifest, "");



More information about the Cmake-commits mailing list