2007-12-21 04:59:44 +03:00
|
|
|
# Locate PhysFS library
|
2005-07-13 17:06:26 +04:00
|
|
|
# This module defines
|
2007-12-21 04:59:44 +03:00
|
|
|
# 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
|
2005-07-13 17:06:26 +04:00
|
|
|
#
|
|
|
|
# $PHYSFSDIR is an environment variable that would
|
|
|
|
# correspond to the ./configure --prefix=$PHYSFSDIR
|
|
|
|
# used in building PHYSFS.
|
|
|
|
#
|
2007-12-21 04:59:44 +03:00
|
|
|
# Created by Eric Wing.
|
2005-07-13 17:06:26 +04:00
|
|
|
|
2009-09-28 19: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-07 04:48:47 +04:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 19:45:50 +04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2007-12-21 04:59:44 +03:00
|
|
|
FIND_PATH(PHYSFS_INCLUDE_DIR physfs.h
|
2008-06-10 00:04:06 +04:00
|
|
|
HINTS
|
2007-12-21 04:59:44 +03:00
|
|
|
$ENV{PHYSFSDIR}
|
2008-06-10 00:04:06 +04:00
|
|
|
PATH_SUFFIXES include/physfs include
|
2007-12-21 04:59:44 +03:00
|
|
|
PATHS
|
|
|
|
~/Library/Frameworks
|
|
|
|
/Library/Frameworks
|
|
|
|
/usr/local
|
|
|
|
/usr
|
|
|
|
/sw # Fink
|
|
|
|
/opt/local # DarwinPorts
|
|
|
|
/opt/csw # Blastwave
|
|
|
|
/opt
|
|
|
|
)
|
2005-10-29 01:46:44 +04:00
|
|
|
|
2007-12-21 04:59:44 +03:00
|
|
|
FIND_LIBRARY(PHYSFS_LIBRARY
|
|
|
|
NAMES physfs
|
2008-06-10 00:04:06 +04:00
|
|
|
HINTS
|
2007-12-21 04:59:44 +03:00
|
|
|
$ENV{PHYSFSDIR}
|
2008-06-10 00:04:06 +04:00
|
|
|
PATH_SUFFIXES lib64 lib
|
2007-12-21 04:59:44 +03:00
|
|
|
PATHS
|
|
|
|
~/Library/Frameworks
|
|
|
|
/Library/Frameworks
|
|
|
|
/usr/local
|
|
|
|
/usr
|
|
|
|
/sw
|
|
|
|
/opt/local
|
|
|
|
/opt/csw
|
|
|
|
/opt
|
|
|
|
)
|
2005-07-13 17:06:26 +04:00
|
|
|
|
2010-04-17 10:38:15 +04:00
|
|
|
# handle the QUIETLY and REQUIRED arguments and set PHYSFS_FOUND to TRUE if
|
|
|
|
# all listed variables are TRUE
|
2010-12-20 23:56:51 +03:00
|
|
|
INCLUDE(FindPackageHandleStandardArgs)
|
2010-04-17 10:38:15 +04:00
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(PhysFS DEFAULT_MSG PHYSFS_LIBRARY PHYSFS_INCLUDE_DIR)
|
2005-07-13 17:06:26 +04:00
|
|
|
|