mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-14 03:40:55 +00:00
c2e831d009
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.
30 lines
560 B
CMake
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)
|