2013-10-15 19:17:36 +04:00
|
|
|
#.rst:
|
|
|
|
# FindDevIL
|
|
|
|
# ---------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
2008-11-12 20:26:53 +03:00
|
|
|
# This module locates the developer's image library.
|
|
|
|
# http://openil.sourceforge.net/
|
|
|
|
#
|
|
|
|
# This module sets:
|
2013-10-15 19:17:36 +04:00
|
|
|
#
|
|
|
|
# ::
|
|
|
|
#
|
|
|
|
# IL_LIBRARIES - the name of the IL library. These include the full path to
|
|
|
|
# the core DevIL library. This one has to be linked into the
|
|
|
|
# application.
|
|
|
|
# ILU_LIBRARIES - the name of the ILU library. Again, the full path. This
|
|
|
|
# library is for filters and effects, not actual loading. It
|
|
|
|
# doesn't have to be linked if the functionality it provides
|
|
|
|
# is not used.
|
|
|
|
# ILUT_LIBRARIES - the name of the ILUT library. Full path. This part of the
|
|
|
|
# library interfaces with OpenGL. It is not strictly needed
|
|
|
|
# in applications.
|
|
|
|
# IL_INCLUDE_DIR - where to find the il.h, ilu.h and ilut.h files.
|
|
|
|
# IL_FOUND - this is set to TRUE if all the above variables were set.
|
|
|
|
# This will be set to false if ILU or ILUT are not found,
|
|
|
|
# even if they are not needed. In most systems, if one
|
|
|
|
# library is found all the others are as well. That's the
|
|
|
|
# way the DevIL developers release it.
|
2008-11-12 20:26:53 +03:00
|
|
|
|
2009-09-28 19:45:50 +04:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2008-2009 Kitware, Inc.
|
|
|
|
# Copyright 2008 Christopher Harvey
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#=============================================================================
|
2010-08-07 04:48:47 +04:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 19:45:50 +04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2008-11-12 20:26:53 +03:00
|
|
|
# TODO: Add version support.
|
|
|
|
# Tested under Linux and Windows (MSVC)
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
2008-11-12 20:26:53 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
find_path(IL_INCLUDE_DIR il.h
|
2008-11-12 20:26:53 +03:00
|
|
|
PATH_SUFFIXES include IL
|
2014-01-02 21:52:18 +04:00
|
|
|
DOC "The path to the directory that contains il.h"
|
2008-11-12 20:26:53 +03:00
|
|
|
)
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
#message("IL_INCLUDE_DIR is ${IL_INCLUDE_DIR}")
|
2008-11-12 20:26:53 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
find_library(IL_LIBRARIES
|
2009-08-13 06:40:56 +04:00
|
|
|
NAMES IL DEVIL
|
2008-11-12 20:26:53 +03:00
|
|
|
PATH_SUFFIXES lib64 lib lib32
|
|
|
|
DOC "The file that corresponds to the base il library."
|
|
|
|
)
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
#message("IL_LIBRARIES is ${IL_LIBRARIES}")
|
2008-11-12 20:26:53 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
find_library(ILUT_LIBRARIES
|
2008-11-12 20:26:53 +03:00
|
|
|
NAMES ILUT
|
|
|
|
PATH_SUFFIXES lib64 lib lib32
|
|
|
|
DOC "The file that corresponds to the il (system?) utility library."
|
|
|
|
)
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
#message("ILUT_LIBRARIES is ${ILUT_LIBRARIES}")
|
2008-11-12 20:26:53 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
find_library(ILU_LIBRARIES
|
2008-11-12 20:26:53 +03:00
|
|
|
NAMES ILU
|
|
|
|
PATH_SUFFIXES lib64 lib lib32
|
|
|
|
DOC "The file that corresponds to the il utility library."
|
|
|
|
)
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
#message("ILU_LIBRARIES is ${ILU_LIBRARIES}")
|
2008-11-12 20:26:53 +03:00
|
|
|
|
2012-08-13 21:42:58 +04:00
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(IL DEFAULT_MSG
|
|
|
|
IL_LIBRARIES ILU_LIBRARIES
|
2009-02-10 00:25:48 +03:00
|
|
|
ILUT_LIBRARIES IL_INCLUDE_DIR)
|