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  64e940f7fa3625db7efce4c1935e5a2c42cadba6 (commit)
       via  7bbab25961680eafabd13356c1cba747a41a3e37 (commit)
      from  6bdb5e43a0d7c88d55f7c759275d5f7436f86d25 (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=64e940f7fa3625db7efce4c1935e5a2c42cadba6
commit 64e940f7fa3625db7efce4c1935e5a2c42cadba6
Merge: 6bdb5e4 7bbab25
Author:     Bill Hoffman <bill.hoff...@kitware.com>
AuthorDate: Thu Jan 6 16:52:37 2011 -0500
Commit:     CMake Topic Stage <kwro...@kitware.com>
CommitDate: Thu Jan 6 16:52:37 2011 -0500

    Merge topic 'fix_source_groups_for_custom_targets_vs10' into next
    
    7bbab25 Add support for source files in custom targets for VS 10 
(Bug#11330).


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=7bbab25961680eafabd13356c1cba747a41a3e37
commit 7bbab25961680eafabd13356c1cba747a41a3e37
Author:     Bill Hoffman <bill.hoff...@kitware.com>
AuthorDate: Thu Jan 6 16:48:46 2011 -0500
Commit:     Bill Hoffman <bill.hoff...@kitware.com>
CommitDate: Thu Jan 6 16:48:46 2011 -0500

    Add support for source files in custom targets for VS 10 (Bug#11330).
    
    In VS10, CMake was not adding the source files that were in the SOURCES
    list for add_custom_target.  This patch fixes that issue.

diff --git a/Source/cmVisualStudio10TargetGenerator.cxx 
b/Source/cmVisualStudio10TargetGenerator.cxx
index ed017c7..4f64a2d 100644
--- a/Source/cmVisualStudio10TargetGenerator.cxx
+++ b/Source/cmVisualStudio10TargetGenerator.cxx
@@ -651,7 +651,7 @@ void cmVisualStudio10TargetGenerator::WriteObjSources()
 
 void cmVisualStudio10TargetGenerator::WriteCLSources()
 {
-  if(this->Target->GetType() > cmTarget::MODULE_LIBRARY)
+  if(this->Target->GetType() > cmTarget::UTILITY)
     {
     return;
     }

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

Summary of changes:
 Source/cmVisualStudio10TargetGenerator.cxx |    2 +-
 1 files changed, 1 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