summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallTargetGenerator.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-06-07 08:01:00 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-06-07 08:24:27 (GMT)
commitdd0417c7becb9d00bf60827d299b3d520bb138c5 (patch)
treeb013c00ee1811118b6b7bcd1914ed7b8cde21ec3 /Source/cmInstallTargetGenerator.h
parent125c48660ce5f58e8fa9371cfb9c192f42b19401 (diff)
downloadCMake-dd0417c7becb9d00bf60827d299b3d520bb138c5.zip
CMake-dd0417c7becb9d00bf60827d299b3d520bb138c5.tar.gz
CMake-dd0417c7becb9d00bf60827d299b3d520bb138c5.tar.bz2
cmInstallTargetGenerator: Re-arrange data layout.
Remove unused cmGeneratorTarget member. Size goes from 238 to 232 bytes.
Diffstat (limited to 'Source/cmInstallTargetGenerator.h')
-rw-r--r--Source/cmInstallTargetGenerator.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/cmInstallTargetGenerator.h b/Source/cmInstallTargetGenerator.h
index 075c8a4..db69220 100644
--- a/Source/cmInstallTargetGenerator.h
+++ b/Source/cmInstallTargetGenerator.h
@@ -14,7 +14,6 @@
#include "cmInstallGenerator.h"
#include "cmTarget.h"
-#include "cmGeneratorTarget.h"
/** \class cmInstallTargetGenerator
* \brief Generate target installation rules.
@@ -100,11 +99,10 @@ protected:
const std::string& toDestDirPath);
cmTarget* Target;
- bool ImportLibrary;
std::string FilePermissions;
- bool Optional;
NamelinkModeType NamelinkMode;
- cmGeneratorTarget* GeneratorTarget;
+ bool ImportLibrary;
+ bool Optional;
};
#endif