diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-06-19 11:11:06 -0400 |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-06-19 11:11:06 -0400 |
commit | 617602e9e9e0ff57a3ef35e62e17d4a764edf920 (patch) | |
tree | e256d55948ad4c4f175dae03b65d1bce46fca182 /Source/cmInstallFilesGenerator.cxx | |
parent | f786f3ae3288c8a7d0156e62eba121e25ef321b9 (diff) | |
download | cmake-617602e9e9e0ff57a3ef35e62e17d4a764edf920.tar.gz |
STYLE: preparations for the INSTALL(EXPORT ...) generator
-move std::string Destination to cmInstallGenerator, since all (except
the script one) have it and add a const accessor so it can be queried
-use temporary variables in cmInstallCommand for the generators so they can be reused easier
-some more const
Alex
Diffstat (limited to 'Source/cmInstallFilesGenerator.cxx')
-rw-r--r-- | Source/cmInstallFilesGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmInstallFilesGenerator.cxx b/Source/cmInstallFilesGenerator.cxx index 075285c25e..76cdaa5277 100644 --- a/Source/cmInstallFilesGenerator.cxx +++ b/Source/cmInstallFilesGenerator.cxx @@ -27,7 +27,7 @@ cmInstallFilesGenerator const char* component, const char* rename, bool optional): - Files(files), Destination(dest), Programs(programs), + cmInstallGenerator(dest), Files(files), Programs(programs), FilePermissions(file_permissions), Configurations(configurations), Component(component), Rename(rename), Optional(optional) { |