diff options
author | Brad King <brad.king@kitware.com> | 2016-07-22 14:42:37 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-07-22 14:42:37 (GMT) |
commit | 624b72159be327505c01f4d68ef6e67ac5f4335e (patch) | |
tree | 3fed7a210497126ad765b1cc62ee03a750b481bf /Source/CPack/cmCPackProductBuildGenerator.h | |
parent | 4e88b1ec17fb61399dcf3e7f5f722905899daf27 (diff) | |
download | CMake-624b72159be327505c01f4d68ef6e67ac5f4335e.zip CMake-624b72159be327505c01f4d68ef6e67ac5f4335e.tar.gz CMake-624b72159be327505c01f4d68ef6e67ac5f4335e.tar.bz2 |
Source/CPack: Add CM_OVERRIDE on MacOS cmCPackGenerator overrides
Diffstat (limited to 'Source/CPack/cmCPackProductBuildGenerator.h')
-rw-r--r-- | Source/CPack/cmCPackProductBuildGenerator.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/CPack/cmCPackProductBuildGenerator.h b/Source/CPack/cmCPackProductBuildGenerator.h index b05b50a..fd2c090 100644 --- a/Source/CPack/cmCPackProductBuildGenerator.h +++ b/Source/CPack/cmCPackProductBuildGenerator.h @@ -33,9 +33,9 @@ public: virtual ~cmCPackProductBuildGenerator(); protected: - virtual int InitializeInternal(); - int PackageFiles(); - virtual const char* GetOutputExtension() { return ".pkg"; } + int InitializeInternal() CM_OVERRIDE; + int PackageFiles() CM_OVERRIDE; + const char* GetOutputExtension() CM_OVERRIDE { return ".pkg"; } // Run ProductBuild with the given command line, which will (if // successful) produce the given package file. Returns true if |