CMakeFindFrameworks.cmake 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #.rst:
  2. # CMakeFindFrameworks
  3. # -------------------
  4. #
  5. # helper module to find OSX frameworks
  6. #=============================================================================
  7. # Copyright 2003-2009 Kitware, Inc.
  8. #
  9. # Distributed under the OSI-approved BSD License (the "License");
  10. # see accompanying file Copyright.txt for details.
  11. #
  12. # This software is distributed WITHOUT ANY WARRANTY; without even the
  13. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  14. # See the License for more information.
  15. #=============================================================================
  16. # (To distribute this file outside of CMake, substitute the full
  17. # License text for the above reference.)
  18. if(NOT CMAKE_FIND_FRAMEWORKS_INCLUDED)
  19. set(CMAKE_FIND_FRAMEWORKS_INCLUDED 1)
  20. macro(CMAKE_FIND_FRAMEWORKS fwk)
  21. set(${fwk}_FRAMEWORKS)
  22. if(APPLE)
  23. foreach(dir
  24. ~/Library/Frameworks/${fwk}.framework
  25. /Library/Frameworks/${fwk}.framework
  26. /System/Library/Frameworks/${fwk}.framework
  27. /Network/Library/Frameworks/${fwk}.framework)
  28. if(EXISTS ${dir})
  29. set(${fwk}_FRAMEWORKS ${${fwk}_FRAMEWORKS} ${dir})
  30. endif()
  31. endforeach()
  32. endif()
  33. endmacro()
  34. endif()