CMake + MSVC building fix (PTHREADS_INC needed in imbuf)

again, I know that the header shouldnt' be included there. But since it's still there at least let's make it build.
This commit is contained in:
Dalai Felinto 2010-05-07 21:35:10 +00:00
parent 22978ebfdc
commit 672044cd49

@ -37,6 +37,10 @@ SET(INC
${OPENJPEG_INC}
)
IF(WIN32)
SET(INC ${INC} ${PTHREADS_INC})
ENDIF(WIN32)
IF(WITH_OPENEXR)
ADD_DEFINITIONS(-DWITH_OPENEXR)
ENDIF(WITH_OPENEXR)