diff options
Diffstat (limited to 'Source/cmMSDotNETGenerator.cxx')
-rw-r--r-- | Source/cmMSDotNETGenerator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmMSDotNETGenerator.cxx b/Source/cmMSDotNETGenerator.cxx index 0a5b605..54c8c4d 100644 --- a/Source/cmMSDotNETGenerator.cxx +++ b/Source/cmMSDotNETGenerator.cxx @@ -407,8 +407,9 @@ void cmMSDotNETGenerator::WriteProjectDepends(std::ostream& fout, if(j->first != dspname) { // is the library part of this SLN ? If so add dependency + std::string libPath = j->first + "_CMAKE_PATH"; const char* cacheValue - = m_Makefile->GetDefinition(j->first.c_str()); + = m_Makefile->GetDefinition(libPath.c_str()); if(cacheValue) { fout << "\t\t{" << this->CreateGUID(dspname) << "}." << depcount << " = {" |