summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallGenerator.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2006-03-28 18:16:15 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2006-03-28 18:16:15 (GMT)
commited5f95cf230c5ccd4376ff6dcc8e57330611f256 (patch)
tree77a16a0730fba3cf83ade11a8632e6272ada3e42 /Source/cmInstallGenerator.cxx
parent0d540b31e01b1c478636e35dfc8bb58405e77629 (diff)
downloadCMake-ed5f95cf230c5ccd4376ff6dcc8e57330611f256.zip
CMake-ed5f95cf230c5ccd4376ff6dcc8e57330611f256.tar.gz
CMake-ed5f95cf230c5ccd4376ff6dcc8e57330611f256.tar.bz2
ENH: Add proper support for installing bundles
Diffstat (limited to 'Source/cmInstallGenerator.cxx')
-rw-r--r--Source/cmInstallGenerator.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmInstallGenerator.cxx b/Source/cmInstallGenerator.cxx
index 0cb3a51..3a7fd92 100644
--- a/Source/cmInstallGenerator.cxx
+++ b/Source/cmInstallGenerator.cxx
@@ -60,6 +60,7 @@ void cmInstallGenerator::AddInstallRule(std::ostream& os,
std::string stype;
switch(type)
{
+ case cmTarget::INSTALL_DIRECTORY:stype = "DIRECTORY"; break;
case cmTarget::INSTALL_PROGRAMS: stype = "PROGRAM"; break;
case cmTarget::EXECUTABLE: stype = "EXECUTABLE"; break;
case cmTarget::STATIC_LIBRARY: stype = "STATIC_LIBRARY"; break;