mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-26 16:18:43 -05:00
ENH: Added named component installation implementation. Installation behavior should be unchanged unless -DCOMPONENT=<name> is specified when cmake_install.cmake is invoked.
This commit is contained in:
@@ -28,7 +28,8 @@ class cmInstallTargetGenerator: public cmInstallGenerator
|
||||
{
|
||||
public:
|
||||
cmInstallTargetGenerator(cmTarget& t, const char* dest, bool implib,
|
||||
const char* permissions = "");
|
||||
const char* permissions = "",
|
||||
const char* component = "");
|
||||
virtual ~cmInstallTargetGenerator();
|
||||
|
||||
protected:
|
||||
@@ -43,6 +44,7 @@ protected:
|
||||
std::string Destination;
|
||||
bool ImportLibrary;
|
||||
std::string Permissions;
|
||||
std::string Component;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user