CMAKE_SYSTEM_PREFIX_PATH.rst 791 B

12345678910111213141516
  1. CMAKE_SYSTEM_PREFIX_PATH
  2. ------------------------
  3. Path used for searching by FIND_XXX(), with appropriate suffixes added.
  4. Specifies a path which will be used by the FIND_XXX() commands. It
  5. contains the "base" directories, the FIND_XXX() commands append
  6. appropriate subdirectories to the base directories. So FIND_PROGRAM()
  7. adds /bin to each of the directories in the path, FIND_LIBRARY()
  8. appends /lib to each of the directories, and FIND_PATH() and
  9. FIND_FILE() append /include . By default this contains the standard
  10. directories for the current system and the CMAKE_INSTALL_PREFIX. It
  11. is NOT intended to be modified by the project, use CMAKE_PREFIX_PATH
  12. for this. See also CMAKE_SYSTEM_INCLUDE_PATH,
  13. CMAKE_SYSTEM_LIBRARY_PATH, CMAKE_SYSTEM_PROGRAM_PATH, and
  14. CMAKE_SYSTEM_IGNORE_PATH.