aseprite/third_party/CMakeLists.txt
David Capello c2e831d009 Use giflib to load gif files.
With this changes a lot of bugs loading different kind of .gif
files are fixed. GIF files must be loaded as RGBA images to
support background color and different transparent color per
frame combinations.
2011-01-18 20:42:43 -03:00

30 lines
560 B
CMake

# ASE - Allegro Sprite Editor
# Copyright (C) 2001-2010 David Capello
include_directories(.)
if(MSVC)
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
endif(MSVC)
if(NOT USE_SHARED_JPEGLIB)
add_subdirectory(jpeg)
endif()
if(NOT USE_SHARED_ZLIB)
include_directories(zlib)
add_subdirectory(zlib)
endif()
if(NOT USE_SHARED_LIBPNG)
include_directories(libpng)
add_subdirectory(libpng)
endif()
add_subdirectory(giflib)
add_subdirectory(gtest)
add_subdirectory(freetype)
add_subdirectory(libart_lgpl)
add_subdirectory(loadpng)
add_subdirectory(tinyxml)