diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-05 15:37:50 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-26 17:46:33 (GMT) |
commit | c2b7336ff3122c57a235aeaa1699ba5627ecf3ce (patch) | |
tree | 58638a12ead027a3e9ab1c67f358da46082632b4 /Source/cmGlobalVisualStudioGenerator.cxx | |
parent | 69329fff70300debf10b62ac08a6bcee9ae7bc3c (diff) | |
download | CMake-c2b7336ff3122c57a235aeaa1699ba5627ecf3ce.zip CMake-c2b7336ff3122c57a235aeaa1699ba5627ecf3ce.tar.gz CMake-c2b7336ff3122c57a235aeaa1699ba5627ecf3ce.tar.bz2 |
cmGeneratorTarget: Move GetConfigCommonSourceFiles from cmTarget.
Diffstat (limited to 'Source/cmGlobalVisualStudioGenerator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudioGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudioGenerator.cxx b/Source/cmGlobalVisualStudioGenerator.cxx index 9b1f4c2..2bf04b4 100644 --- a/Source/cmGlobalVisualStudioGenerator.cxx +++ b/Source/cmGlobalVisualStudioGenerator.cxx @@ -843,7 +843,7 @@ cmGlobalVisualStudioGenerator::TargetIsFortranOnly(cmTarget const& target) { // Issue diagnostic if the source files depend on the config. std::vector<cmSourceFile*> sources; - if (!target.GetConfigCommonSourceFiles(sources)) + if (!gt->GetConfigCommonSourceFiles(sources)) { return false; } |