summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimír Vondruš <mosra@centrum.cz>2016-11-24 12:40:22 +0100
committerBrad King <brad.king@kitware.com>2016-11-28 16:31:25 -0500
commit7abb12c826cad6e5847c32d4769c076732581901 (patch)
tree25c26f3eeee5c017a08a97d5969c1785b4819eb9
parentd3f9f5120c05e4756d7ee1ed81917f74583455a2 (diff)
downloadcmake-7abb12c826cad6e5847c32d4769c076732581901.tar.gz
FindDevIL: Make the ILUT library optional
Some distributions (such as ArchLinux) have only the IL and ILU libraries and since these are mainly used, the module should succeed even though ILUT was not found. Removed it from the FPHSA() macro call, making it effectively optional.
-rw-r--r--Modules/FindDevIL.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindDevIL.cmake b/Modules/FindDevIL.cmake
index 4b6128b6c6..45fab829c7 100644
--- a/Modules/FindDevIL.cmake
+++ b/Modules/FindDevIL.cmake
@@ -69,4 +69,4 @@ find_library(ILU_LIBRARIES
FIND_PACKAGE_HANDLE_STANDARD_ARGS(DevIL DEFAULT_MSG
IL_LIBRARIES ILU_LIBRARIES
- ILUT_LIBRARIES IL_INCLUDE_DIR)
+ IL_INCLUDE_DIR)