CPackBundle.cmake 1.6 KB

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