2016-09-27 22:01:08 +03:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
|
|
|
|
2013-10-15 19:17:36 +04:00
|
|
|
#.rst:
|
|
|
|
# FindPhysFS
|
|
|
|
# ----------
|
2005-07-13 17:06:26 +04:00
|
|
|
#
|
2013-10-15 19: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 17:06:26 +04:00
|
|
|
#
|
2012-08-13 21:42:58 +04:00
|
|
|
# Created by Eric Wing.
|
2005-07-13 17:06:26 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
find_path(PHYSFS_INCLUDE_DIR physfs.h
|
2008-06-10 00:04:06 +04:00
|
|
|
HINTS
|
2012-03-29 02:00:54 +04: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
|
|
|
|
/sw # Fink
|
|
|
|
/opt/local # DarwinPorts
|
|
|
|
/opt/csw # Blastwave
|
|
|
|
/opt
|
|
|
|
)
|
2005-10-29 01:46:44 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
find_library(PHYSFS_LIBRARY
|
2007-12-21 04:59:44 +03:00
|
|
|
NAMES physfs
|
2008-06-10 00:04:06 +04:00
|
|
|
HINTS
|
2012-03-29 02:00:54 +04:00
|
|
|
ENV PHYSFSDIR
|
2012-03-29 02:51:06 +04:00
|
|
|
PATH_SUFFIXES lib
|
2007-12-21 04:59:44 +03:00
|
|
|
PATHS
|
|
|
|
~/Library/Frameworks
|
|
|
|
/Library/Frameworks
|
|
|
|
/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
|
2012-08-13 21:47:32 +04:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
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
|
|
|
|