CPackBundle.cmake 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ##section Variables specific to CPack Bundle generator
  2. ##end
  3. ##module
  4. # - CPack Bundle generator (Mac OS X) specific options
  5. #
  6. # Installers built on Mac OS X using the Bundle generator use the
  7. # aforementioned DragNDrop variables, plus the following Bundle-specific
  8. # parameters:
  9. ##end
  10. #
  11. ##variable
  12. # CPACK_BUNDLE_NAME - The name of the generated bundle. This
  13. # appears in the OSX finder as the bundle name. Required.
  14. ##end
  15. #
  16. ##variable
  17. # CPACK_BUNDLE_PLIST - Path to an OSX plist file that will be used
  18. # as the Info.plist for the generated bundle. This assumes that
  19. # the caller has generated or specified their own Info.plist file.
  20. # Required.
  21. ##end
  22. #
  23. ##variable
  24. # CPACK_BUNDLE_ICON - Path to an OSX icns file that will be used as
  25. # the icon for the generated bundle. This is the icon that appears
  26. # in the OSX finder for the bundle, and in the OSX dock when the
  27. # bundle is opened. Required.
  28. ##end
  29. #
  30. ##variable
  31. # CPACK_BUNDLE_STARTUP_SCRIPT - Path to an executable or script that
  32. # will be run whenever an end-user double-clicks the generated bundle
  33. # in the OSX Finder. Optional.
  34. ##end
  35. #=============================================================================
  36. # Copyright 2006-2009 Kitware, Inc.
  37. #
  38. # Distributed under the OSI-approved BSD License (the "License");
  39. # see accompanying file Copyright.txt for details.
  40. #
  41. # This software is distributed WITHOUT ANY WARRANTY; without even the
  42. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  43. # See the License for more information.
  44. #=============================================================================
  45. # (To distribute this file outside of CMake, substitute the full
  46. # License text for the above reference.)
  47. #Bundle Generator specific code should be put here