mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 22:59:56 -05:00
install(TARGETS): Add RUNTIME_DEPENDENCIES option
This commit is contained in:
@@ -397,3 +397,11 @@ cmRuntimeDependencyArchive::GetRPaths() const
|
||||
{
|
||||
return this->RPaths;
|
||||
}
|
||||
|
||||
bool cmRuntimeDependencyArchive::PlatformSupportsRuntimeDependencies(
|
||||
const std::string& platform)
|
||||
{
|
||||
static const std::set<std::string> supportedPlatforms = { "Windows", "Linux",
|
||||
"Darwin" };
|
||||
return supportedPlatforms.count(platform);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user