From 38e2fb7ca71903e801e0bd1a043633847d385c1a Mon Sep 17 00:00:00 2001 From: Robin Mills Date: Fri, 7 Dec 2018 10:27:24 +0000 Subject: [PATCH] Fix video/webready package name. --- cmake/packaging.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmake/packaging.cmake b/cmake/packaging.cmake index 95ee6630..be292902 100644 --- a/cmake/packaging.cmake +++ b/cmake/packaging.cmake @@ -53,12 +53,12 @@ if ( NOT APPLE ) endif() set (VI "") # Video -if ( ${EXIV2_ENABLE_VIDEO} ) +if ( EXIV2_ENABLE_VIDEO ) set (VI Video) endif() set (WR "") # WebReady -if ( ${EXIV2_ENABLE_WEBREADY} ) +if ( EXIV2_ENABLE_WEBREADY ) set (WR Webready) endif() @@ -72,7 +72,7 @@ if ( MSVC ) set(VS 2012) elseif ( MSVC_VERSION STREQUAL 1600 ) set(VS 2010) - elseif ( MSVC_VERSION STREQUAL 1300 ) + elseif ( MSVC_VERSION STREQUAL 1500 ) set(VS 2008) endif() endif()