summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 41a0ffa..134fdf9 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -85,6 +85,11 @@ void cmMakefile::AddDefaultCommands()
this->AddDefinition("UNIX", "1");
#endif
+ // always creat an empty install target
+ cmTarget target;
+ target.SetType(cmTarget::INSTALL);
+ target.SetInAll(false);
+ m_Targets.insert(cmTargets::value_type("INSTALL",target));
}
cmMakefile::~cmMakefile()