2012-01-06 04:12:57 +00:00
|
|
|
# ASEPRITE
|
2013-01-27 15:13:13 +00:00
|
|
|
# Copyright (C) 2001-2013 David Capello
|
2010-08-11 00:49:32 +00:00
|
|
|
|
2010-09-30 20:04:32 +00:00
|
|
|
include_directories(.)
|
2010-08-11 00:49:32 +00:00
|
|
|
|
2010-08-25 19:18:46 +00:00
|
|
|
if(MSVC)
|
|
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
|
|
|
endif(MSVC)
|
|
|
|
|
2010-09-30 20:04:32 +00:00
|
|
|
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()
|
|
|
|
|
2012-03-15 03:17:49 +00:00
|
|
|
if(NOT USE_SHARED_GIFLIB)
|
|
|
|
add_subdirectory(giflib)
|
|
|
|
endif()
|
|
|
|
|
2012-03-19 17:04:24 +00:00
|
|
|
if(NOT USE_SHARED_TINYXML)
|
|
|
|
add_subdirectory(tinyxml)
|
|
|
|
endif()
|
|
|
|
|
2012-03-19 17:33:49 +00:00
|
|
|
if(NOT USE_SHARED_GTEST)
|
|
|
|
add_subdirectory(gtest)
|
|
|
|
endif()
|
|
|
|
|
2012-03-15 03:17:49 +00:00
|
|
|
if(ENABLE_UPDATER AND NOT USE_SHARED_CURL)
|
2011-07-28 00:26:22 +00:00
|
|
|
add_subdirectory(curl)
|
|
|
|
endif()
|
2012-03-15 03:17:49 +00:00
|
|
|
|
2012-07-09 00:21:01 +00:00
|
|
|
if(NOT USE_SHARED_LIBLOADPNG)
|
|
|
|
add_subdirectory(loadpng)
|
|
|
|
endif()
|
2013-03-31 03:36:00 +00:00
|
|
|
|
|
|
|
if(ENABLE_WEBSERVER)
|
|
|
|
add_subdirectory(mongoose)
|
|
|
|
endif()
|
2014-10-26 01:22:58 +00:00
|
|
|
|
|
|
|
if(NOT USE_SHARED_PIXMAN)
|
|
|
|
add_subdirectory(pixman-cmake)
|
|
|
|
endif()
|