mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-20 21:40:15 +08:00
cmInstallFilesGenerator: Re-arrange data layout.
Size goes from 296 to 288 bytes.
This commit is contained in:
@@ -28,9 +28,11 @@ cmInstallFilesGenerator
|
||||
bool optional):
|
||||
cmInstallGenerator(dest, configurations, component, message),
|
||||
Makefile(mf),
|
||||
Files(files), Programs(programs),
|
||||
Files(files),
|
||||
FilePermissions(file_permissions),
|
||||
Rename(rename), Optional(optional)
|
||||
Rename(rename),
|
||||
Programs(programs),
|
||||
Optional(optional)
|
||||
{
|
||||
// We need per-config actions if any files have generator expressions.
|
||||
for(std::vector<std::string>::const_iterator i = files.begin();
|
||||
|
@@ -43,9 +43,9 @@ protected:
|
||||
|
||||
cmMakefile* Makefile;
|
||||
std::vector<std::string> Files;
|
||||
bool Programs;
|
||||
std::string FilePermissions;
|
||||
std::string Rename;
|
||||
bool Programs;
|
||||
bool Optional;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user