2013-10-15 11:17:36 -04:00
|
|
|
#.rst:
|
|
|
|
# FindPhysFS
|
|
|
|
# ----------
|
2005-07-13 09:06:26 -04:00
|
|
|
#
|
2013-10-15 11:17:36 -04:00
|
|
|
#
|
|
|
|
#
|
|
|
|
# Locate PhysFS library This module defines PHYSFS_LIBRARY, the name of
|
|
|
|
# the library to link against PHYSFS_FOUND, if false, do not try to link
|
|
|
|
# to PHYSFS PHYSFS_INCLUDE_DIR, where to find physfs.h
|
|
|
|
#
|
|
|
|
# $PHYSFSDIR is an environment variable that would correspond to the
|
|
|
|
# ./configure --prefix=$PHYSFSDIR used in building PHYSFS.
|
2005-07-13 09:06:26 -04:00
|
|
|
#
|
2012-08-13 13:42:58 -04:00
|
|
|
# Created by Eric Wing.
|
2005-07-13 09:06:26 -04:00
|
|
|
|
2009-09-28 11:45:50 -04:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2005-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:45:50 -04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
find_path(PHYSFS_INCLUDE_DIR physfs.h
|
2008-06-09 16:04:06 -04:00
|
|
|
HINTS
|
2012-03-29 00:00:54 +02:00
|
|
|
ENV PHYSFSDIR
|
2008-06-09 16:04:06 -04:00
|
|
|
PATH_SUFFIXES include/physfs include
|
2007-12-20 20:59:44 -05:00
|
|
|
PATHS
|
|
|
|
~/Library/Frameworks
|
|
|
|
/Library/Frameworks
|
|
|
|
/sw # Fink
|
|
|
|
/opt/local # DarwinPorts
|
|
|
|
/opt/csw # Blastwave
|
|
|
|
/opt
|
|
|
|
)
|
2005-10-28 17:46:44 -04:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
find_library(PHYSFS_LIBRARY
|
2007-12-20 20:59:44 -05:00
|
|
|
NAMES physfs
|
2008-06-09 16:04:06 -04:00
|
|
|
HINTS
|
2012-03-29 00:00:54 +02:00
|
|
|
ENV PHYSFSDIR
|
2012-03-29 00:51:06 +02:00
|
|
|
PATH_SUFFIXES lib
|
2007-12-20 20:59:44 -05:00
|
|
|
PATHS
|
|
|
|
~/Library/Frameworks
|
|
|
|
/Library/Frameworks
|
|
|
|
/sw
|
|
|
|
/opt/local
|
|
|
|
/opt/csw
|
|
|
|
/opt
|
|
|
|
)
|
2005-07-13 09:06:26 -04:00
|
|
|
|
2010-04-17 08:38:15 +02:00
|
|
|
# handle the QUIETLY and REQUIRED arguments and set PHYSFS_FOUND to TRUE if
|
|
|
|
# all listed variables are TRUE
|
2012-08-13 13:47:32 -04:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
2010-04-17 08:38:15 +02:00
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(PhysFS DEFAULT_MSG PHYSFS_LIBRARY PHYSFS_INCLUDE_DIR)
|
2005-07-13 09:06:26 -04:00
|
|
|
|