2013-10-15 11:17:36 -04:00
|
|
|
#.rst:
|
|
|
|
# CMakeFindFrameworks
|
|
|
|
# -------------------
|
|
|
|
#
|
|
|
|
# helper module to find OSX frameworks
|
2005-12-14 13:51:08 -05:00
|
|
|
|
2009-09-28 11:46:51 -04: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-06 17:48:47 -07:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 11:46:51 -04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2012-08-13 13:47:32 -04: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 16:18:18 -05:00
|
|
|
~/Library/Frameworks/${fwk}.framework
|
|
|
|
/Library/Frameworks/${fwk}.framework
|
|
|
|
/System/Library/Frameworks/${fwk}.framework
|
|
|
|
/Network/Library/Frameworks/${fwk}.framework)
|
2012-08-13 13:47:32 -04:00
|
|
|
if(EXISTS ${dir})
|
|
|
|
set(${fwk}_FRAMEWORKS ${${fwk}_FRAMEWORKS} ${dir})
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
endif()
|
|
|
|
endmacro()
|
|
|
|
endif()
|