2013-10-15 15:17:36 +00:00
|
|
|
#.rst:
|
|
|
|
# CMakeFindFrameworks
|
|
|
|
# -------------------
|
|
|
|
#
|
|
|
|
# helper module to find OSX frameworks
|
2016-07-30 14:48:53 +00:00
|
|
|
#
|
|
|
|
# This module reads hints about search locations from variables::
|
|
|
|
#
|
|
|
|
# CMAKE_FIND_FRAMEWORK_EXTRA_LOCATIONS - Extra directories
|
2005-12-14 18:51:08 +00:00
|
|
|
|
2009-09-28 15:46:51 +00:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2003-2009 Kitware, Inc.
|
|
|
|
#
|
|
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
# see accompanying file Copyright.txt for details.
|
|
|
|
#
|
|
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the License for more information.
|
|
|
|
#=============================================================================
|
2010-08-07 00:48:47 +00:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 15:46:51 +00:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2012-08-13 17:47:32 +00:00
|
|
|
if(NOT CMAKE_FIND_FRAMEWORKS_INCLUDED)
|
|
|
|
set(CMAKE_FIND_FRAMEWORKS_INCLUDED 1)
|
|
|
|
macro(CMAKE_FIND_FRAMEWORKS fwk)
|
|
|
|
set(${fwk}_FRAMEWORKS)
|
|
|
|
if(APPLE)
|
|
|
|
foreach(dir
|
2003-12-29 21:18:18 +00:00
|
|
|
~/Library/Frameworks/${fwk}.framework
|
2016-07-30 14:48:53 +00:00
|
|
|
/usr/local/Frameworks/${fwk}.framework
|
2003-12-29 21:18:18 +00:00
|
|
|
/Library/Frameworks/${fwk}.framework
|
|
|
|
/System/Library/Frameworks/${fwk}.framework
|
2016-07-30 14:48:53 +00:00
|
|
|
/Network/Library/Frameworks/${fwk}.framework
|
|
|
|
${CMAKE_FIND_FRAMEWORK_EXTRA_LOCATIONS})
|
2012-08-13 17:47:32 +00:00
|
|
|
if(EXISTS ${dir})
|
|
|
|
set(${fwk}_FRAMEWORKS ${${fwk}_FRAMEWORKS} ${dir})
|
2012-08-13 17:50:14 +00:00
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
endif()
|
|
|
|
endmacro()
|
|
|
|
endif()
|