MACOSX_PACKAGE_LOCATION.rst 1009 B

12345678910111213141516171819
  1. MACOSX_PACKAGE_LOCATION
  2. -----------------------
  3. Place a source file inside a Mac OS X bundle, CFBundle, or framework.
  4. Executable targets with the MACOSX_BUNDLE property set are built as
  5. Mac OS X application bundles on Apple platforms. Shared library
  6. targets with the FRAMEWORK property set are built as Mac OS X
  7. frameworks on Apple platforms. Module library targets with the BUNDLE
  8. property set are built as Mac OS X CFBundle bundles on Apple
  9. platforms. Source files listed in the target with this property set
  10. will be copied to a directory inside the bundle or framework content
  11. folder specified by the property value. For bundles the content
  12. folder is "<name>.app/Contents". For frameworks the content folder is
  13. "<name>.framework/Versions/<version>". For cfbundles the content
  14. folder is "<name>.bundle/Contents" (unless the extension is changed).
  15. See the PUBLIC_HEADER, PRIVATE_HEADER, and RESOURCE target properties
  16. for specifying files meant for Headers, PrivateHeaders, or Resources
  17. directories.