mirror of
https://github.com/reactos/CMake.git
synced 2025-01-23 20:25:34 +00:00
e2ec3b671b
- The find_* commands now provide a HINTS option. - The option specifies paths to be preferred over the system paths. - Many Find* modules were using two find calls with NO_DEFAULT_PATH to approximate the behavior, but that blocked users from overriding things with CMAKE_PREFIX_PATH. - This commit uses the HINTS feature to get desired behavior in only one find command call.
49 lines
959 B
CMake
49 lines
959 B
CMake
# 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.
|
|
#
|
|
# Created by Eric Wing.
|
|
|
|
FIND_PATH(PHYSFS_INCLUDE_DIR physfs.h
|
|
HINTS
|
|
$ENV{PHYSFSDIR}
|
|
PATH_SUFFIXES include/physfs include
|
|
PATHS
|
|
~/Library/Frameworks
|
|
/Library/Frameworks
|
|
/usr/local
|
|
/usr
|
|
/sw # Fink
|
|
/opt/local # DarwinPorts
|
|
/opt/csw # Blastwave
|
|
/opt
|
|
)
|
|
|
|
FIND_LIBRARY(PHYSFS_LIBRARY
|
|
NAMES physfs
|
|
HINTS
|
|
$ENV{PHYSFSDIR}
|
|
PATH_SUFFIXES lib64 lib
|
|
PATHS
|
|
~/Library/Frameworks
|
|
/Library/Frameworks
|
|
/usr/local
|
|
/usr
|
|
/sw
|
|
/opt/local
|
|
/opt/csw
|
|
/opt
|
|
)
|
|
|
|
SET(PHYSFS_FOUND "NO")
|
|
IF(PHYSFS_LIBRARY AND PHYSFS_INCLUDE_DIR)
|
|
SET(PHYSFS_FOUND "YES")
|
|
ENDIF(PHYSFS_LIBRARY AND PHYSFS_INCLUDE_DIR)
|
|
|