1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
- find_path(IL_INCLUDE_DIR il.h
- PATH_SUFFIXES include IL
- DOC "The path to the directory that contains il.h"
- )
- find_library(IL_LIBRARIES
- NAMES IL DEVIL
- PATH_SUFFIXES lib64 lib lib32
- DOC "The file that corresponds to the base il library."
- )
- find_library(ILUT_LIBRARIES
- NAMES ILUT
- PATH_SUFFIXES lib64 lib lib32
- DOC "The file that corresponds to the il (system?) utility library."
- )
- find_library(ILU_LIBRARIES
- NAMES ILU
- PATH_SUFFIXES lib64 lib lib32
- DOC "The file that corresponds to the il utility library."
- )
- FIND_PACKAGE_HANDLE_STANDARD_ARGS(IL DEFAULT_MSG
- IL_LIBRARIES ILU_LIBRARIES
- ILUT_LIBRARIES IL_INCLUDE_DIR)
|