Bug #757
Wrong ELSE statement in src/CMakeLists.txt
Start date:
06 Feb 2011
Due date:
% Done:
100%
Estimated time:
Description
Hi,
in src/CMakeLists.txt, the ELSE statement does not match the surrounding IF/ENDIF statements:
IF( EXIV2_ENABLE_PNG )
IF( ZLIB_FOUND )
IF ( MINGW OR UNIX )
TARGET_LINK_LIBRARIES( exiv2 ${ZLIB_LIBRARIES} )
ELSE ( MSVC )
TARGET_LINK_LIBRARIES( exiv2 zlibd )
ENDIF( MING OR UNIX)
ENDIF( ZLIB_FOUND )
ENDIF( EXIV2_ENABLE_PNG )
Should be either ELSE or use ELSEIF.
Michael
History
Updated by Gilles Caulier almost 11 years ago
- % Done changed from 0 to 100
Fixed with commit r2443
Gilles Caulier
Updated by Andreas Huggel over 10 years ago
- Category set to build
- Status changed from New to Resolved
- Assignee set to Gilles Caulier
- Target version set to 0.22
Thanks Gilles!