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