aseprite/third_party/CMakeLists.txt
David Capello 71f044751f Add flags to link with giflib and curl shared libraries.
Removed freetype and libart in the linking process because they
are not used anymore (the source code is still in the repository).
2012-03-15 00:17:49 -03:00

35 lines
598 B
CMake

# ASEPRITE
# Copyright (C) 2001-2012 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()
if(NOT USE_SHARED_GIFLIB)
add_subdirectory(giflib)
endif()
if(ENABLE_UPDATER AND NOT USE_SHARED_CURL)
add_subdirectory(curl)
endif()
add_subdirectory(gtest)
add_subdirectory(loadpng)
add_subdirectory(tinyxml)