Xcode: add support for embedding dynamic libraries

This commit is contained in:
Lucas SOLTIC
2021-09-14 08:37:48 +10:00
committed by Craig Scott
parent b7bcf70761
commit 6ef7bfbb64
10 changed files with 44 additions and 27 deletions

View File

@@ -102,7 +102,11 @@ public:
}
//! Return true if the path is a framework
static bool IsPathToFramework(const std::string& value);
static bool IsPathToFramework(const std::string& path);
//! Return true if the path is a macOS non-framework shared library (aka
//! .dylib)
static bool IsPathToMacOSSharedLibrary(const std::string& path);
static bool DoesFileExistWithExtensions(
const std::string& name, const std::vector<std::string>& sourceExts);