mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-29 18:51:05 -05:00
Xcode: add support for embedding dynamic libraries
This commit is contained in:
committed by
Craig Scott
parent
b7bcf70761
commit
6ef7bfbb64
@@ -1592,6 +1592,12 @@ bool cmSystemTools::IsPathToFramework(const std::string& path)
|
||||
cmHasLiteralSuffix(path, ".framework"));
|
||||
}
|
||||
|
||||
bool cmSystemTools::IsPathToMacOSSharedLibrary(const std::string& path)
|
||||
{
|
||||
return (cmSystemTools::FileIsFullPath(path) &&
|
||||
cmHasLiteralSuffix(path, ".dylib"));
|
||||
}
|
||||
|
||||
bool cmSystemTools::CreateTar(const std::string& outFileName,
|
||||
const std::vector<std::string>& files,
|
||||
cmTarCompression compressType, bool verbose,
|
||||
|
||||
Reference in New Issue
Block a user