summaryrefslogtreecommitdiffstats
path: root/Modules/FindDevIL.cmake
diff options
context:
space:
mode:
authorVladimír Vondruš <mosra@centrum.cz>2016-11-24 11:40:22 (GMT)
committerBrad King <brad.king@kitware.com>2016-11-28 21:31:25 (GMT)
commit7abb12c826cad6e5847c32d4769c076732581901 (patch)
tree25c26f3eeee5c017a08a97d5969c1785b4819eb9 /Modules/FindDevIL.cmake
parentd3f9f5120c05e4756d7ee1ed81917f74583455a2 (diff)
downloadCMake-7abb12c826cad6e5847c32d4769c076732581901.zip
CMake-7abb12c826cad6e5847c32d4769c076732581901.tar.gz
CMake-7abb12c826cad6e5847c32d4769c076732581901.tar.bz2
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.
Diffstat (limited to 'Modules/FindDevIL.cmake')
-rw-r--r--Modules/FindDevIL.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindDevIL.cmake b/Modules/FindDevIL.cmake
index 4b6128b..45fab82 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)