mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 03:59:58 +00:00
7bbaa4283d
Our Git commit hooks disallow modification or addition of lines with trailing whitespace. Wipe out all remnants of trailing whitespace everywhere except third-party code. Run the following shell code: git ls-files -z -- \ bootstrap doxygen.config '*.readme' \ '*.c' '*.cmake' '*.cpp' '*.cxx' \ '*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \ '*.mm' '*.pike' '*.py' '*.txt' '*.vim' | egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' | egrep -z -v '^(Modules/CPack\..*\.in)' | xargs -0 sed -i 's/ \+$//'
70 lines
2.0 KiB
CMake
70 lines
2.0 KiB
CMake
# Locate SDL_net library
|
|
# This module defines
|
|
# SDLNET_LIBRARY, the name of the library to link against
|
|
# SDLNET_FOUND, if false, do not try to link against
|
|
# SDLNET_INCLUDE_DIR, where to find the headers
|
|
#
|
|
# $SDLDIR is an environment variable that would
|
|
# correspond to the ./configure --prefix=$SDLDIR
|
|
# used in building SDL.
|
|
#
|
|
# Created by Eric Wing. This was influenced by the FindSDL.cmake
|
|
# module, but with modifications to recognize OS X frameworks and
|
|
# additional Unix paths (FreeBSD, etc).
|
|
|
|
#=============================================================================
|
|
# 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(SDLNET_INCLUDE_DIR SDL_net.h
|
|
HINTS
|
|
$ENV{SDLNETDIR}
|
|
$ENV{SDLDIR}
|
|
PATH_SUFFIXES include
|
|
PATHS
|
|
~/Library/Frameworks
|
|
/Library/Frameworks
|
|
/usr/local/include/SDL
|
|
/usr/include/SDL
|
|
/usr/local/include/SDL12
|
|
/usr/local/include/SDL11 # FreeBSD ports
|
|
/usr/include/SDL12
|
|
/usr/include/SDL11
|
|
/sw/include/SDL # Fink
|
|
/sw/include
|
|
/opt/local/include/SDL # DarwinPorts
|
|
/opt/local/include
|
|
/opt/csw/include/SDL # Blastwave
|
|
/opt/csw/include
|
|
/opt/include/SDL
|
|
/opt/include
|
|
)
|
|
FIND_LIBRARY(SDLNET_LIBRARY
|
|
NAMES SDL_net
|
|
HINTS
|
|
$ENV{SDLNETDIR}
|
|
$ENV{SDLDIR}
|
|
PATH_SUFFIXES lib64 lib
|
|
PATHS
|
|
~/Library/Frameworks
|
|
/Library/Frameworks
|
|
/sw
|
|
/opt/local
|
|
/opt/csw
|
|
/opt
|
|
)
|
|
|
|
INCLUDE(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(SDLNET
|
|
REQUIRED_VARS SDLNET_LIBRARY SDLNET_INCLUDE_DIR)
|