diff options
author | Brad King <brad.king@kitware.com> | 2011-01-11 20:51:46 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2011-01-11 20:51:46 (GMT) |
commit | 13cc4bb628045ca8226e78081068eae09479713a (patch) | |
tree | 296dca121c4f4ea247590a25cbff73bf8e00725d /Source/cmVisualStudio10TargetGenerator.cxx | |
parent | f04bbdf1d4a8b1b1d5f4a2ceae2870af5c6d417e (diff) | |
parent | 7bbab25961680eafabd13356c1cba747a41a3e37 (diff) | |
download | CMake-13cc4bb628045ca8226e78081068eae09479713a.zip CMake-13cc4bb628045ca8226e78081068eae09479713a.tar.gz CMake-13cc4bb628045ca8226e78081068eae09479713a.tar.bz2 |
Merge topic 'fix_source_groups_for_custom_targets_vs10'
7bbab25 Add support for source files in custom targets for VS 10 (Bug#11330).
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.cxx')
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx index 8402b50..ab282b0 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx +++ b/Source/cmVisualStudio10TargetGenerator.cxx @@ -657,7 +657,7 @@ void cmVisualStudio10TargetGenerator::WriteObjSources() void cmVisualStudio10TargetGenerator::WriteCLSources() { - if(this->Target->GetType() > cmTarget::MODULE_LIBRARY) + if(this->Target->GetType() > cmTarget::UTILITY) { return; } |