mirror of
https://github.com/edubart/otclient.git
synced 2025-05-05 03:59:21 +02:00
32 lines
1.2 KiB
CMake
32 lines
1.2 KiB
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.
|
|
|
|
#=============================================================================
|
|
# 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.
|
|
#=============================================================================
|
|
# (To distribute this file outside of CMake, substitute the full
|
|
# License text for the above reference.)
|
|
|
|
FIND_PATH(PHYSFS_INCLUDE_DIR physfs.h PATH_SUFFIXES physfs)
|
|
FIND_LIBRARY(PHYSFS_LIBRARY NAMES libphysfs.a physfs)
|
|
INCLUDE(FindPackageHandleStandardArgs)
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(PhysFS DEFAULT_MSG PHYSFS_LIBRARY PHYSFS_INCLUDE_DIR)
|
|
MARK_AS_ADVANCED(PHYSFS_LIBRARY PHYSFS_INCLUDE_DIR)
|
|
|