Merge pull request #4860 from shaymagsumov/devil-tiff-feature

[devil] Fix 'tiff' option name.
This commit is contained in:
Phil Christensen 2018-12-05 12:16:09 -08:00 committed by GitHub
commit 540776b341
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 5 deletions

View File

@ -1,5 +1,5 @@
Source: devil
Version: 1.8.0-2
Version: 1.8.0-3
Build-Depends:
Description: A full featured cross-platform image library
Default-Features: libpng, tiff, libjpeg, openexr, jasper, lcms

View File

@ -1,11 +1,9 @@
include(vcpkg_common_functions)
set(DEVIL_VERSION 1.8.0)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO DentonW/DevIL
REF v${DEVIL_VERSION}
REF v1.8.0
SHA512 4aed5e50a730ece8b1eb6b2f6204374c6fb6f5334cf7c880d84c0f79645ea7c6b5118f57a7868a487510fc59c452f51472b272215d4c852f265f58b5857e17c7
HEAD_REF master
PATCHES
@ -20,7 +18,7 @@ if("libpng" IN_LIST FEATURES)
endif()
set(IL_NO_TIF 1)
if("libtiff" IN_LIST FEATURES)
if("tiff" IN_LIST FEATURES)
set(IL_NO_TIF 0)
endif()