Skip to content

Commit

Permalink
Fix video/webready package name.
Browse files Browse the repository at this point in the history
  • Loading branch information
clanmills authored and piponazo committed Dec 9, 2018
1 parent 6e14f4a commit 38e2fb7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmake/packaging.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand All @@ -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()
Expand Down

0 comments on commit 38e2fb7

Please sign in to comment.