mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 21:59:54 -06:00
ENH: try another thing
This commit is contained in:
@@ -1582,9 +1582,12 @@ void cmLocalGenerator::OutputLinkLibraries(std::ostream& fout,
|
||||
if(runtimeConcatenate)
|
||||
{
|
||||
#ifdef __QNX__
|
||||
std::cerr << itr->c_str() << "\n";
|
||||
std::cerr << this->Convert(itr->c_str(), NONE, SHELL, false) << "\n";
|
||||
fout << runtimeSep << this->Convert(itr->c_str(), NONE, SHELL, false);
|
||||
std::string s = "\"";
|
||||
s += *itr;
|
||||
s += "\"";
|
||||
std::cout << itr->c_str() << "\n";
|
||||
std::cout << this->Convert(s.c_str(), NONE, SHELL, false) << "\n";
|
||||
fout << runtimeSep << this->Convert(s.c_str(), NONE, SHELL, false) << ;
|
||||
#else
|
||||
fout << runtimeSep << *itr;
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user