summaryrefslogtreecommitdiffstats
path: root/Source/CPack/cmCPackBundleGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-07-22 14:42:37 (GMT)
committerBrad King <brad.king@kitware.com>2016-07-22 14:42:37 (GMT)
commit624b72159be327505c01f4d68ef6e67ac5f4335e (patch)
tree3fed7a210497126ad765b1cc62ee03a750b481bf /Source/CPack/cmCPackBundleGenerator.h
parent4e88b1ec17fb61399dcf3e7f5f722905899daf27 (diff)
downloadCMake-624b72159be327505c01f4d68ef6e67ac5f4335e.zip
CMake-624b72159be327505c01f4d68ef6e67ac5f4335e.tar.gz
CMake-624b72159be327505c01f4d68ef6e67ac5f4335e.tar.bz2
Source/CPack: Add CM_OVERRIDE on MacOS cmCPackGenerator overrides
Diffstat (limited to 'Source/CPack/cmCPackBundleGenerator.h')
-rw-r--r--Source/CPack/cmCPackBundleGenerator.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/CPack/cmCPackBundleGenerator.h b/Source/CPack/cmCPackBundleGenerator.h
index 9cb2f0a..c6fa408 100644
--- a/Source/CPack/cmCPackBundleGenerator.h
+++ b/Source/CPack/cmCPackBundleGenerator.h
@@ -29,12 +29,12 @@ public:
virtual ~cmCPackBundleGenerator();
protected:
- virtual int InitializeInternal();
- virtual const char* GetPackagingInstallPrefix();
+ int InitializeInternal() CM_OVERRIDE;
+ const char* GetPackagingInstallPrefix() CM_OVERRIDE;
int ConstructBundle();
int SignBundle(const std::string& src_dir);
- int PackageFiles();
- bool SupportsComponentInstallation() const;
+ int PackageFiles() CM_OVERRIDE;
+ bool SupportsComponentInstallation() const CM_OVERRIDE;
std::string InstallPrefix;
};