diff options
author | Stephen Kelly <steveire@gmail.com> | 2012-12-26 02:40:49 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-01-29 19:11:49 (GMT) |
commit | 0e10782ba795050e1ea82530d79c323f60478df4 (patch) | |
tree | b6d8b92725537591b13f0f7a439008f5516178cf /Source/cmExtraCodeBlocksGenerator.cxx | |
parent | 21fc6c46df7f2271d7baace04f239f031785b917 (diff) | |
download | CMake-0e10782ba795050e1ea82530d79c323f60478df4.zip CMake-0e10782ba795050e1ea82530d79c323f60478df4.tar.gz CMake-0e10782ba795050e1ea82530d79c323f60478df4.tar.bz2 |
Move GetCompileDefinitions to cmTarget.
Diffstat (limited to 'Source/cmExtraCodeBlocksGenerator.cxx')
-rw-r--r-- | Source/cmExtraCodeBlocksGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmExtraCodeBlocksGenerator.cxx b/Source/cmExtraCodeBlocksGenerator.cxx index 0cf9cbb..6d5d5b5 100644 --- a/Source/cmExtraCodeBlocksGenerator.cxx +++ b/Source/cmExtraCodeBlocksGenerator.cxx @@ -621,7 +621,7 @@ void cmExtraCodeBlocksGenerator::AppendTarget(cmGeneratedFileStream& fout, ->GetGeneratorTarget(target); // the compilerdefines for this target - std::string cdefs = gtgt->GetCompileDefinitions(); + std::string cdefs = target->GetCompileDefinitions(); if(!cdefs.empty()) { |