diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-04 17:19:48 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:20:48 (GMT) |
commit | d6bb319b09d056428468d8894f7d7dd2cb0d963e (patch) | |
tree | 016ecec965eb21caa46e552cd5f3d3d3d6311d32 /Source/cmVisualStudio10TargetGenerator.cxx | |
parent | 7a460852fa1bc9df22d4c54bac3d57f909488608 (diff) | |
download | CMake-d6bb319b09d056428468d8894f7d7dd2cb0d963e.zip CMake-d6bb319b09d056428468d8894f7d7dd2cb0d963e.tar.gz CMake-d6bb319b09d056428468d8894f7d7dd2cb0d963e.tar.bz2 |
cmGeneratorTarget: Move GetFullName from cmTarget.
Bring GetFullNameInternal with it.
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 16edf3c..2b33c2c 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx +++ b/Source/cmVisualStudio10TargetGenerator.cxx @@ -1774,7 +1774,7 @@ void cmVisualStudio10TargetGenerator::WritePathAndIncrementalLinkOptions() else { outDir = this->Target->GetDirectory(config->c_str()) + "/"; - targetNameFull = this->Target->GetFullName(config->c_str()); + targetNameFull = this->GeneratorTarget->GetFullName(config->c_str()); } this->ConvertToWindowsSlash(intermediateDir); this->ConvertToWindowsSlash(outDir); |