summaryrefslogtreecommitdiffstats
path: root/Source/CPack/cmCPackDragNDropGenerator.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/cmCPackDragNDropGenerator.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/cmCPackDragNDropGenerator.h')
-rw-r--r--Source/CPack/cmCPackDragNDropGenerator.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/CPack/cmCPackDragNDropGenerator.h b/Source/CPack/cmCPackDragNDropGenerator.h
index 1392b21..a5f89f6 100644
--- a/Source/CPack/cmCPackDragNDropGenerator.h
+++ b/Source/CPack/cmCPackDragNDropGenerator.h
@@ -29,17 +29,17 @@ public:
virtual ~cmCPackDragNDropGenerator();
protected:
- virtual int InitializeInternal();
- virtual const char* GetOutputExtension();
- int PackageFiles();
- bool SupportsComponentInstallation() const;
+ int InitializeInternal() CM_OVERRIDE;
+ const char* GetOutputExtension() CM_OVERRIDE;
+ int PackageFiles() CM_OVERRIDE;
+ bool SupportsComponentInstallation() const CM_OVERRIDE;
bool CopyFile(std::ostringstream& source, std::ostringstream& target);
bool CreateEmptyFile(std::ostringstream& target, size_t size);
bool RunCommand(std::ostringstream& command, std::string* output = 0);
std::string GetComponentInstallDirNameSuffix(
- const std::string& componentName);
+ const std::string& componentName) CM_OVERRIDE;
int CreateDMG(const std::string& src_dir, const std::string& output_file);