aseprite/third_party/CMakeLists.txt
David Capello 49614f6f41 Always add third_party/libpng to include directories (thanks to Tobias Hansen).
Because private libpng headers are used by loadpng and
src/file/png_format.cpp.
2012-03-19 14:27:00 -03:00

37 lines
606 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)
add_subdirectory(libpng)
endif()
if(NOT USE_SHARED_GIFLIB)
add_subdirectory(giflib)
endif()
if(NOT USE_SHARED_TINYXML)
add_subdirectory(tinyxml)
endif()
if(ENABLE_UPDATER AND NOT USE_SHARED_CURL)
add_subdirectory(curl)
endif()
add_subdirectory(gtest)
add_subdirectory(loadpng)