diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-10-28 18:47:46 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-07-27 19:58:50 (GMT) |
commit | 9f2dca805c8010636d4be7ef03d96bfc131c9809 (patch) | |
tree | 0fe3e34e2ef5344d53d3d0d5c41f36bb17942321 /Source/cmExtraCodeBlocksGenerator.cxx | |
parent | c7a8e74b8c7ade9efb68b8bd36fd6d741f2dba7e (diff) | |
download | CMake-9f2dca805c8010636d4be7ef03d96bfc131c9809.zip CMake-9f2dca805c8010636d4be7ef03d96bfc131c9809.tar.gz CMake-9f2dca805c8010636d4be7ef03d96bfc131c9809.tar.bz2 |
Move GetLocation to cmGeneratorTarget.
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 6d145a2..933a256 100644 --- a/Source/cmExtraCodeBlocksGenerator.cxx +++ b/Source/cmExtraCodeBlocksGenerator.cxx @@ -593,7 +593,7 @@ void cmExtraCodeBlocksGenerator::AppendTarget(cmGeneratedFileStream& fout, { cmGeneratorTarget* gt = this->GlobalGenerator->GetGeneratorTarget(target); - location = gt->Target->GetLocation(buildType); + location = gt->GetLocation(buildType); } fout<<" <Option output=\"" << location |