mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-02 04:09:33 -05:00
ENH: add framework support to FIND_FILE
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
=========================================================================*/
|
||||
#include "cmFindFileCommand.h"
|
||||
#include "cmCacheManager.h"
|
||||
#include "cmGlob.h"
|
||||
#include <stdlib.h>
|
||||
|
||||
|
||||
@@ -86,6 +87,17 @@ bool cmFindFileCommand::InitialPass(std::vector<std::string> const& argsIn)
|
||||
return true;
|
||||
}
|
||||
}
|
||||
#if defined (__APPLE__)
|
||||
cmStdString fpath = this->FindHeaderInFrameworks(args[0].c_str(), args[1].c_str());
|
||||
if(fpath.size())
|
||||
{
|
||||
m_Makefile->AddCacheDefinition(args[0].c_str(),
|
||||
fpath.c_str(),
|
||||
helpString.c_str(),
|
||||
cmCacheManager::FILEPATH);
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
std::string s = args[0] + "-NOTFOUND";
|
||||
m_Makefile->AddCacheDefinition(args[0].c_str(),
|
||||
s.c_str(),
|
||||
@@ -94,3 +106,66 @@ bool cmFindFileCommand::InitialPass(std::vector<std::string> const& argsIn)
|
||||
return true;
|
||||
}
|
||||
|
||||
cmStdString cmFindFileCommand::FindHeaderInFrameworks(const char* defineVar,
|
||||
const char* file)
|
||||
{
|
||||
#ifndef __APPLE__
|
||||
return cmStdString("");
|
||||
#else
|
||||
cmStdString fileName = file;
|
||||
cmStdString frameWorkName;
|
||||
cmStdString::size_type pos = fileName.find("/");
|
||||
std::cerr << "ff " << fileName << " " << pos << "\n";
|
||||
if(pos != fileName.npos)
|
||||
{
|
||||
// remove the name from the slash;
|
||||
fileName = fileName.substr(pos+1);
|
||||
frameWorkName = file;
|
||||
frameWorkName = frameWorkName.substr(0, frameWorkName.size()-fileName.size()-1);
|
||||
// if the framework has a path in it then just use the filename
|
||||
std::cerr << fileName << " " << frameWorkName << "\n";
|
||||
if(frameWorkName.find("/") != frameWorkName.npos)
|
||||
{
|
||||
fileName = file;
|
||||
frameWorkName = "";
|
||||
}
|
||||
}
|
||||
std::vector<cmStdString> path;
|
||||
path.push_back("~/Library/Frameworks");
|
||||
path.push_back("/Library/Frameworks");
|
||||
path.push_back("/System/Library/Frameworks");
|
||||
path.push_back("/Network/Library/Frameworks");
|
||||
for( std::vector<cmStdString>::iterator i = path.begin();
|
||||
i != path.end(); ++i)
|
||||
{
|
||||
if(frameWorkName.size())
|
||||
{
|
||||
std::string fpath = *i;
|
||||
fpath += "/";
|
||||
fpath += frameWorkName;
|
||||
fpath += ".framework";
|
||||
std::string path = fpath;
|
||||
path += "/Headers/";
|
||||
path += fileName;
|
||||
std::cerr << "try " << path << "\n";
|
||||
if(cmSystemTools::FileExists(path.c_str()))
|
||||
{
|
||||
return fpath;
|
||||
}
|
||||
}
|
||||
cmStdString glob = *i;
|
||||
glob += "/*/Headers/";
|
||||
glob += file;
|
||||
cmGlob globIt;
|
||||
globIt.FindFiles(glob);
|
||||
std::vector<std::string> files = globIt.GetFiles();
|
||||
if(files.size())
|
||||
{
|
||||
cmStdString fheader = cmSystemTools::CollapseFullPath(files[0].c_str());
|
||||
fheader = cmSystemTools::GetFilenamePath(fheader);
|
||||
return fheader;
|
||||
}
|
||||
}
|
||||
return cmStdString("");
|
||||
#endif
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user