CPackBundle.cmake 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. #.rst:
  2. # CPackBundle
  3. # -----------
  4. #
  5. # CPack Bundle generator (Mac OS X) specific options
  6. #
  7. # Variables specific to CPack Bundle generator
  8. # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  9. #
  10. # Installers built on Mac OS X using the Bundle generator use the
  11. # aforementioned DragNDrop (CPACK_DMG_xxx) variables, plus the following
  12. # Bundle-specific parameters (CPACK_BUNDLE_xxx).
  13. #
  14. # .. variable:: CPACK_BUNDLE_NAME
  15. #
  16. # The name of the generated bundle. This appears in the OSX finder as the
  17. # bundle name. Required.
  18. #
  19. # .. variable:: CPACK_BUNDLE_PLIST
  20. #
  21. # Path to an OSX plist file that will be used for the generated bundle. This
  22. # assumes that the caller has generated or specified their own Info.plist
  23. # file. Required.
  24. #
  25. # .. variable:: CPACK_BUNDLE_ICON
  26. #
  27. # Path to an OSX icon file that will be used as the icon for the generated
  28. # bundle. This is the icon that appears in the OSX finder for the bundle, and
  29. # in the OSX dock when the bundle is opened. Required.
  30. #
  31. # .. variable:: CPACK_BUNDLE_STARTUP_COMMAND
  32. #
  33. # Path to a startup script. This is a path to an executable or script that
  34. # will be run whenever an end-user double-clicks the generated bundle in the
  35. # OSX Finder. Optional.
  36. #
  37. # .. variable:: CPACK_BUNDLE_APPLE_CERT_APP
  38. #
  39. # The name of your Apple supplied code signing certificate for the application.
  40. # The name usually takes the form "Developer ID Application: [Name]" or
  41. # "3rd Party Mac Developer Application: [Name]". If this variable is not set
  42. # the application will not be signed.
  43. #
  44. # .. variable:: CPACK_BUNDLE_APPLE_ENTITLEMENTS
  45. #
  46. # The name of the plist file that contains your apple entitlements for sandboxing
  47. # your application. This file is required for submission to the Mac App Store.
  48. #
  49. # .. variable:: CPACK_BUNDLE_APPLE_CODESIGN_FILES
  50. #
  51. # A list of additional files that you wish to be signed. You do not need to
  52. # list the main application folder, or the main executable. You should
  53. # list any frameworks and plugins that are included in your app bundle.
  54. #
  55. # .. variable:: CPACK_BUNDLE_APPLE_CODESIGN_PARAMETER
  56. #
  57. # Additional parameter that will passed to codesign.
  58. # Default value: "--deep -f"
  59. #
  60. # .. variable:: CPACK_COMMAND_CODESIGN
  61. #
  62. # Path to the codesign(1) command used to sign applications with an
  63. # Apple cert. This variable can be used to override the automatically
  64. # detected command (or specify its location if the auto-detection fails
  65. # to find it.)
  66. #=============================================================================
  67. # Copyright 2006-2009 Kitware, Inc.
  68. #
  69. # Distributed under the OSI-approved BSD License (the "License");
  70. # see accompanying file Copyright.txt for details.
  71. #
  72. # This software is distributed WITHOUT ANY WARRANTY; without even the
  73. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  74. # See the License for more information.
  75. #=============================================================================
  76. # (To distribute this file outside of CMake, substitute the full
  77. # License text for the above reference.)
  78. #Bundle Generator specific code should be put here