summaryrefslogtreecommitdiff
path: root/Source/cmInstalledFile.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-03-08 13:37:44 +0100
committerStephen Kelly <steveire@gmail.com>2015-03-11 00:17:29 +0100
commit4448f175c8d8ee2bfce920a5e7b7e57aa923a19d (patch)
treef03625dae284a6563d23161a25aef2ba02885943 /Source/cmInstalledFile.cxx
parent7916d7bac602e71be359e12600b19d823327bdf8 (diff)
downloadcmake-4448f175c8d8ee2bfce920a5e7b7e57aa923a19d.tar.gz
cmInstalledFile: Move Property implementation out of line.
Don't require re-building the world when changing cmAlgorithms.h.
Diffstat (limited to 'Source/cmInstalledFile.cxx')
-rw-r--r--Source/cmInstalledFile.cxx11
1 files changed, 11 insertions, 0 deletions
diff --git a/Source/cmInstalledFile.cxx b/Source/cmInstalledFile.cxx
index 4b53752b4f..8c52b488cb 100644
--- a/Source/cmInstalledFile.cxx
+++ b/Source/cmInstalledFile.cxx
@@ -12,6 +12,7 @@
#include "cmInstalledFile.h"
#include "cmSystemTools.h"
#include "cmMakefile.h"
+#include "cmAlgorithms.h"
//----------------------------------------------------------------------------
cmInstalledFile::cmInstalledFile():
@@ -29,6 +30,16 @@ cmInstalledFile::~cmInstalledFile()
}
}
+cmInstalledFile::Property::Property()
+{
+
+}
+
+cmInstalledFile::Property::~Property()
+{
+ cmDeleteAll(this->ValueExpressions);
+}
+
//----------------------------------------------------------------------------
void cmInstalledFile::SetName(cmMakefile* mf, const std::string& name)
{