CMAKE_FIND_FRAMEWORK.rst 551 B

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