https://cmake.org/cmake/help/latest/module/FindDevIL.html#result-variables
mentions that FindDevIL CMake module sets the following, frustratingly
inconsistent variables:
- IL_LIBRARIES
- IL_INCLUDE_DIR
- DevIL_FOUND
Note I can't actually test this on my local machine, so I'll be relying
on CI.
Fixes #2289
target_include_directories(gvplugin_devil SYSTEM PRIVATE
${PANGOCAIRO_INCLUDE_DIRS}
- ${DevIL_INCLUDE_DIRS}
+ ${IL_INCLUDE_DIRS}
)
target_link_libraries(gvplugin_devil
${PANGOCAIRO_LIBRARIES}
- ${DevIL_LIBRARIES}
+ ${IL_LIBRARIES}
)
install(