Files
test/source/blender/imbuf/CMakeLists.txt

144 lines
3.0 KiB
CMake

# $Id$
# ***** BEGIN GPL LICENSE BLOCK *****
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# The Original Code is Copyright (C) 2006, Blender Foundation
# All rights reserved.
#
# The Original Code is: all of this file.
#
# Contributor(s): Jacques Beaurain.
#
# ***** END GPL LICENSE BLOCK *****
set(INC
.
../avi
../blenlib
../blenkernel
../makesdna
../../../intern/memutil
../../../intern/guardedalloc
${JPEG_INC}
${PNG_INC}
${ZLIB_INC}
)
set(SRC
intern/allocimbuf.c
intern/anim_movie.c
intern/bmp.c
intern/cache.c
intern/divers.c
intern/filetype.c
intern/filter.c
intern/imageprocess.c
intern/iris.c
intern/jp2.c
intern/jpeg.c
intern/md5.c
intern/metadata.c
intern/module.c
intern/png.c
intern/radiance_hdr.c
intern/readimage.c
intern/rectop.c
intern/rotate.c
intern/scaling.c
intern/targa.c
intern/thumbs.c
intern/thumbs_blend.c
intern/tiff.c
intern/util.c
intern/writeimage.c
IMB_imbuf.h
IMB_imbuf_types.h
IMB_thumbs.h
intern/IMB_allocimbuf.h
intern/IMB_anim.h
intern/IMB_filetype.h
intern/IMB_filter.h
intern/IMB_metadata.h
intern/cineon/cin_debug_stuff.h
intern/cineon/cineonfile.h
intern/cineon/cineonlib.h
intern/cineon/dpxfile.h
intern/cineon/dpxlib.h
intern/cineon/logImageCore.h
intern/cineon/logImageLib.h
intern/cineon/logmemfile.h
intern/dds/BlockDXT.h
intern/dds/Color.h
intern/dds/ColorBlock.h
intern/dds/Common.h
intern/dds/DirectDrawSurface.h
intern/dds/Image.h
intern/dds/PixelFormat.h
intern/dds/Stream.h
intern/dds/dds_api.h
intern/imbuf.h
intern/md5.h
intern/openexr/openexr_api.h
intern/openexr/openexr_multi.h
)
if(WITH_IMAGE_OPENEXR)
add_definitions(-DWITH_OPENEXR)
endif()
if(WITH_IMAGE_TIFF)
list(APPEND INC ${TIFF_INCLUDE_DIR})
add_definitions(-DWITH_TIFF)
endif()
if(WITH_IMAGE_OPENJPEG)
list(APPEND INC ${OPENJPEG_INC})
add_definitions(-DWITH_OPENJPEG)
endif()
if(WITH_IMAGE_REDCODE)
list(APPEND INC ${REDCODE_INC})
add_definitions(-DWITH_REDCODE)
endif()
if(WITH_CODEC_QUICKTIME)
list(APPEND INC
../quicktime
${QUICKTIME_INC}
)
add_definitions(-DWITH_QUICKTIME)
endif()
if(WITH_CODEC_FFMPEG)
list(APPEND INC ${FFMPEG_INC})
add_definitions(-DWITH_FFMPEG)
endif()
if(WITH_IMAGE_DDS)
add_definitions(-DWITH_DDS)
endif()
if(WITH_IMAGE_CINEON)
add_definitions(-DWITH_CINEON)
endif()
if(WITH_IMAGE_HDR)
add_definitions(-DWITH_HDR)
endif()
blenderlib(bf_imbuf "${SRC}" "${INC}")