CMAKE_FIND_APPBUNDLE.rst 581 B

12345678910111213141516171819202122
  1. CMAKE_FIND_APPBUNDLE
  2. --------------------
  3. This variable affects how ``find_*`` commands choose between
  4. OS X Application Bundles and unix-style package components.
  5. On Darwin or systems supporting OS X Application Bundles, the
  6. ``CMAKE_FIND_APPBUNDLE`` variable can be set to empty or
  7. one of the following:
  8. ``FIRST``
  9. Try to find application bundles before standard programs.
  10. This is the default on Darwin.
  11. ``LAST``
  12. Try to find application bundles after standard programs.
  13. ``ONLY``
  14. Only try to find application bundles.
  15. ``NEVER``
  16. Never try to find application bundles.