bjornblissing / osg-3rdparty-cmake

CMake scripts for building OpenSceneGraph third party libraries.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

giflib library name should be giflib not libgif

henrya2 opened this issue · comments

giflib library name should be giflib not libgif.

OpenScenGraph 3.4.0's CMakeModule will not search for libgif.
" FIND_DEPENDENCY(GIFLIB gif_lib.h "ungif;libungif;giflib" ${OSG_3RDPARTY_BIN} "D" "")"
It only searches 'ungif;libungif;giflib'.
Project name is correct but target lib is not right.
It should be
"""
PROJECT(giflib C)

SET(TARGET_LIB giflib)