summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallTargetGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-05-05 18:57:19 (GMT)
committerBrad King <brad.king@kitware.com>2006-05-05 18:57:19 (GMT)
commit50a0f71120afe28c205bacab5a1350eb04815f3d (patch)
tree7f3473d0e452b39c63e59763cca41167f3483a26 /Source/cmInstallTargetGenerator.h
parent059320a5774fcaaced1a6155fec7dd5816bb1f75 (diff)
downloadCMake-50a0f71120afe28c205bacab5a1350eb04815f3d.zip
CMake-50a0f71120afe28c205bacab5a1350eb04815f3d.tar.gz
CMake-50a0f71120afe28c205bacab5a1350eb04815f3d.tar.bz2
ENH: Added CONFIGURATIONS option to INSTALL command to allow per-configuration install rules.
Diffstat (limited to 'Source/cmInstallTargetGenerator.h')
-rw-r--r--Source/cmInstallTargetGenerator.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/Source/cmInstallTargetGenerator.h b/Source/cmInstallTargetGenerator.h
index 7d88bde..777b7af 100644
--- a/Source/cmInstallTargetGenerator.h
+++ b/Source/cmInstallTargetGenerator.h
@@ -27,9 +27,12 @@ class cmTarget;
class cmInstallTargetGenerator: public cmInstallGenerator
{
public:
- cmInstallTargetGenerator(cmTarget& t, const char* dest, bool implib,
- const char* permissions = "",
- const char* component = "");
+ cmInstallTargetGenerator(
+ cmTarget& t, const char* dest, bool implib,
+ const char* permissions = "",
+ std::vector<std::string> const& configurations =std::vector<std::string>(),
+ const char* component = ""
+ );
virtual ~cmInstallTargetGenerator();
protected:
@@ -44,6 +47,7 @@ protected:
std::string Destination;
bool ImportLibrary;
std::string Permissions;
+ std::vector<std::string> Configurations;
std::string Component;
};