cmake_modules/FindGLEW.cmake
author koda
Mon, 17 Jun 2013 22:54:17 +0200
branchwebgl
changeset 9201 bcf2f7798ebb
parent 8448 14f736ca7eb3
child 9244 bb95e351270c
permissions -rw-r--r--
redid FindGLEW in the right way (tm)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9201
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
     1
# Find GLEW
7997
7dff08baf9e3 add FindGLEW.cmake module
koda
parents:
diff changeset
     2
#
9201
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
     3
# Once done this will define
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
     4
#  GLEW_FOUND - system has Sparkle
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
     5
#  GLEW_INCLUDE_DIR - the Sparkle include directory
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
     6
#  GLEW_LIBRARY - The library needed to use Sparkle
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
     7
# Copyright (c) 2013, Vittorio Giovara <vittorio.giovara@gmail.com>
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
     8
#
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
     9
# Distributed under the OSI-approved BSD License (the "License");
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
    10
# see accompanying file Copyright.txt for details.
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
    11
#
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
    12
# This software is distributed WITHOUT ANY WARRANTY; without even the
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
    13
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
    14
# See the License for more information.
7997
7dff08baf9e3 add FindGLEW.cmake module
koda
parents:
diff changeset
    15
9201
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
    16
include(FindPackageHandleStandardArgs)
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
    17
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
    18
find_path( GLEW_INCLUDE_DIR GL/glew.h
7997
7dff08baf9e3 add FindGLEW.cmake module
koda
parents:
diff changeset
    19
            /usr/include
7dff08baf9e3 add FindGLEW.cmake module
koda
parents:
diff changeset
    20
            /usr/local/include
7dff08baf9e3 add FindGLEW.cmake module
koda
parents:
diff changeset
    21
            /sw/include
7dff08baf9e3 add FindGLEW.cmake module
koda
parents:
diff changeset
    22
            /opt/local/include
9201
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
    23
            $ENV{PROGRAMFILES}/GLEW/include
7997
7dff08baf9e3 add FindGLEW.cmake module
koda
parents:
diff changeset
    24
            DOC "The directory where GL/glew.h resides")
9201
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
    25
find_library( GLEW_LIBRARY
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
    26
            NAMES GLEW glew glew32 glew32s
7997
7dff08baf9e3 add FindGLEW.cmake module
koda
parents:
diff changeset
    27
            PATHS
7dff08baf9e3 add FindGLEW.cmake module
koda
parents:
diff changeset
    28
            /usr/lib64
7dff08baf9e3 add FindGLEW.cmake module
koda
parents:
diff changeset
    29
            /usr/lib
7dff08baf9e3 add FindGLEW.cmake module
koda
parents:
diff changeset
    30
            /usr/local/lib64
7dff08baf9e3 add FindGLEW.cmake module
koda
parents:
diff changeset
    31
            /usr/local/lib
7dff08baf9e3 add FindGLEW.cmake module
koda
parents:
diff changeset
    32
            /sw/lib
7dff08baf9e3 add FindGLEW.cmake module
koda
parents:
diff changeset
    33
            /opt/local/lib
9201
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
    34
            $ENV{PROGRAMFILES}/GLEW/lib
7997
7dff08baf9e3 add FindGLEW.cmake module
koda
parents:
diff changeset
    35
            DOC "The GLEW library")
7dff08baf9e3 add FindGLEW.cmake module
koda
parents:
diff changeset
    36
9201
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
    37
find_package_handle_standard_args(GLEW DEFAULT_MSG GLEW_INCLUDE_DIR GLEW_LIBRARY)
bcf2f7798ebb redid FindGLEW in the right way (tm)
koda
parents: 8448
diff changeset
    38
mark_as_advanced(GLEW_INCLUDE_DIR GLEW_LIBRARY)
7997
7dff08baf9e3 add FindGLEW.cmake module
koda
parents:
diff changeset
    39