This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  005e632700c7f8e89f610fdbf71fb96ccb6dd47c (commit)
       via  f661b953331f891ced0bbaff5e19f991a66e138b (commit)
      from  c1f195937c160b0a0218c2b85868a843b811d93b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=005e632700c7f8e89f610fdbf71fb96ccb6dd47c
commit 005e632700c7f8e89f610fdbf71fb96ccb6dd47c
Merge: c1f1959 f661b95
Author:     Brad King <brad.k...@kitware.com>
AuthorDate: Thu Jan 6 08:12:11 2011 -0500
Commit:     CMake Topic Stage <kwro...@kitware.com>
CommitDate: Thu Jan 6 08:12:11 2011 -0500

    Merge topic 'vs-Fortran-only-DLL' into next
    
    f661b95 VS: Fix linking of Fortran-only DLL projects (#10803)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f661b953331f891ced0bbaff5e19f991a66e138b
commit f661b953331f891ced0bbaff5e19f991a66e138b
Author:     Brian Bassett <bbass...@tibco.com>
AuthorDate: Tue Jun 8 22:19:00 2010 -0400
Commit:     Brad King <brad.k...@kitware.com>
CommitDate: Thu Jan 6 08:06:30 2011 -0500

    VS: Fix linking of Fortran-only DLL projects (#10803)
    
    Emit the LinkDLL attribute of VFLinkerTool for Fortran DLLs.

diff --git a/Source/cmLocalVisualStudio7Generator.cxx 
b/Source/cmLocalVisualStudio7Generator.cxx
index 136c177..3e66574 100644
--- a/Source/cmLocalVisualStudio7Generator.cxx
+++ b/Source/cmLocalVisualStudio7Generator.cxx
@@ -1011,7 +1011,12 @@ void 
cmLocalVisualStudio7Generator::OutputBuildTool(std::ostream& fout,
     temp += "/";
     temp += targetNameImport;
     fout << "\t\t\t\tImportLibrary=\""
-         << this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"/>\n";
+         << this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"";
+    if(this->FortranProject)
+      {
+      fout << "\n\t\t\t\tLinkDLL=\"true\"";
+      }
+    fout << "/>\n";
     }
     break;
     case cmTarget::EXECUTABLE:

-----------------------------------------------------------------------

Summary of changes:
 Source/cmLocalVisualStudio7Generator.cxx |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake
_______________________________________________
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits

Reply via email to