diff options
author | Brad King <brad.king@kitware.com> | 2008-04-14 21:53:11 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-04-14 21:53:11 (GMT) |
commit | 067717a56a55d5a35c223170e5bad0427d0d63f3 (patch) | |
tree | 0d9c8b832623aa98658700d6d92bf0467996830d /Source/cmInstallCommand.h | |
parent | 3052d2c85412fba525efcc3e3cda2cac4426ff4b (diff) | |
download | CMake-067717a56a55d5a35c223170e5bad0427d0d63f3.zip CMake-067717a56a55d5a35c223170e5bad0427d0d63f3.tar.gz CMake-067717a56a55d5a35c223170e5bad0427d0d63f3.tar.bz2 |
BUG: Fix compatibility with CMake 2.4 for installation of MACOSX_BUNDLE targets
- Add policy CMP0006 to decide whether to use compatibility
- OLD behavior is to fall back to RUNTIME rules
- NEW behavior is to produce an error
Diffstat (limited to 'Source/cmInstallCommand.h')
-rw-r--r-- | Source/cmInstallCommand.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmInstallCommand.h b/Source/cmInstallCommand.h index 4978059..0b7c95f 100644 --- a/Source/cmInstallCommand.h +++ b/Source/cmInstallCommand.h @@ -346,6 +346,7 @@ private: bool MakeFilesFullPath(const char* modeName, const std::vector<std::string>& relFiles, std::vector<std::string>& absFiles); + bool CheckCMP0006(bool& failure); }; |