mirror of
https://github.com/aseprite/aseprite.git
synced 2024-11-20 05:14:45 +00:00
238 lines
7.5 KiB
CMake
238 lines
7.5 KiB
CMake
# Aseprite
|
|
# Copyright (C) 2021-2024 Igara Studio S.A.
|
|
# Copyright (C) 2001-2018 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)
|
|
set(SKIP_INSTALL_ALL on)
|
|
# Don't build zlib tests
|
|
set(ZLIB_BUILD_EXAMPLES OFF CACHE BOOL "Enable Zlib Examples")
|
|
add_subdirectory(zlib)
|
|
endif()
|
|
|
|
if(NOT USE_SHARED_LIBPNG)
|
|
set(SKIP_INSTALL_ALL ON)
|
|
# We only need the static version of libpng
|
|
set(PNG_SHARED OFF CACHE BOOL "Build shared lib")
|
|
set(PNG_STATIC ON CACHE BOOL "Build static lib")
|
|
set(PNG_TESTS OFF CACHE BOOL "Build libpng tests")
|
|
add_subdirectory(libpng)
|
|
endif()
|
|
|
|
if(NOT USE_SHARED_GIFLIB)
|
|
set(GIFLIB_UTILS OFF CACHE BOOL "Build giflib utils")
|
|
add_subdirectory(giflib)
|
|
endif()
|
|
|
|
if(ENABLE_WEBP AND NOT LAF_BACKEND STREQUAL "skia")
|
|
set(WEBP_BUILD_EXTRAS OFF CACHE BOOL "Build extras.")
|
|
set(WEBP_BUILD_ANIM_UTILS OFF CACHE BOOL "Build animation utilities.")
|
|
set(WEBP_BUILD_CWEBP OFF CACHE BOOL "Build the cwebp command line tool.")
|
|
set(WEBP_BUILD_DWEBP OFF CACHE BOOL "Build the dwebp command line tool.")
|
|
set(WEBP_BUILD_GIF2WEBP OFF CACHE BOOL "Build the gif2webp conversion tool.")
|
|
set(WEBP_BUILD_IMG2WEBP OFF CACHE BOOL "Build the img2webp animation tool.")
|
|
set(WEBP_BUILD_VWEBP OFF CACHE BOOL "Build the vwebp viewer tool.")
|
|
set(WEBP_BUILD_WEBPINFO OFF CACHE BOOL "Build the webpinfo command line tool.")
|
|
set(WEBP_BUILD_WEBPMUX OFF CACHE BOOL "Build the webpmux command line tool.")
|
|
|
|
add_subdirectory(libwebp)
|
|
|
|
if(NOT USE_SHARED_LIBPNG)
|
|
add_dependencies(webp ${PNG_LIBRARY})
|
|
add_dependencies(webpdemux ${PNG_LIBRARY})
|
|
add_dependencies(libwebpmux ${PNG_LIBRARY})
|
|
endif()
|
|
endif()
|
|
|
|
if(NOT USE_SHARED_TINYXML)
|
|
set(tinyxml2_BUILD_TESTING OFF CACHE BOOL "Build tests for tinyxml2")
|
|
add_subdirectory(tinyxml2)
|
|
endif()
|
|
|
|
if(REQUIRE_CURL AND NOT USE_SHARED_CURL)
|
|
set(BUILD_RELEASE_DEBUG_DIRS ON BOOL)
|
|
set(BUILD_CURL_EXE OFF CACHE BOOL "Set to ON to build curl executable.")
|
|
|
|
add_subdirectory(curl)
|
|
endif()
|
|
|
|
if(NOT USE_SHARED_PIXMAN)
|
|
add_subdirectory(pixman-cmake)
|
|
endif()
|
|
|
|
if(NOT USE_SHARED_FREETYPE AND NOT LAF_BACKEND STREQUAL "skia")
|
|
set(SKIP_INSTALL_ALL on)
|
|
set(WITH_BZip2 OFF CACHE BOOL "")
|
|
|
|
add_subdirectory(freetype2)
|
|
|
|
target_compile_definitions(freetype PUBLIC
|
|
FT_CONFIG_OPTION_SYSTEM_ZLIB)
|
|
if(UNIX)
|
|
target_include_directories(freetype BEFORE PUBLIC
|
|
${CMAKE_CURRENT_BINARY_DIR}/freetype2/include)
|
|
endif()
|
|
|
|
if(HARFBUZZ_FOUND)
|
|
target_link_libraries(freetype PRIVATE ${HARFBUZZ_LIBRARIES})
|
|
target_include_directories(freetype PRIVATE ${HARFBUZZ_INCLUDE_DIRS})
|
|
endif()
|
|
|
|
if(NOT USE_SHARED_LIBPNG)
|
|
add_dependencies(freetype ${PNG_LIBRARIES})
|
|
endif()
|
|
endif()
|
|
|
|
if(NOT USE_SHARED_HARFBUZZ AND NOT LAF_BACKEND STREQUAL "skia")
|
|
if(NOT USE_SHARED_FREETYPE)
|
|
set(ENV{FREETYPE_DIR} ${FREETYPE_DIR})
|
|
endif()
|
|
set(HB_HAVE_FREETYPE ON CACHE BOOL "Enable freetype interop helpers")
|
|
set(HB_HAVE_GRAPHITE2 OFF CACHE BOOL "Enable Graphite2 complementary shaper")
|
|
set(HB_BUILTIN_UCDN ON CACHE BOOL "Use HarfBuzz provided UCDN")
|
|
set(HB_HAVE_GLIB OFF CACHE BOOL "Enable glib unicode functions")
|
|
set(HB_HAVE_ICU OFF CACHE BOOL "Enable icu unicode functions")
|
|
set(HB_HAVE_CORETEXT OFF CACHE BOOL "Enable CoreText shaper backend on macOS")
|
|
set(HB_HAVE_UNISCRIBE OFF CACHE BOOL "Enable Uniscribe shaper backend on Windows")
|
|
set(HB_HAVE_DIRECTWRITE OFF CACHE BOOL "Enable DirectWrite shaper backend on Windows")
|
|
add_subdirectory(harfbuzz)
|
|
endif()
|
|
|
|
add_subdirectory(simpleini)
|
|
add_subdirectory(fmt)
|
|
|
|
# Add cmark without tests
|
|
if(NOT USE_SHARED_CMARK)
|
|
set(CMARK_PROGRAM OFF CACHE BOOL "Build cmark executable")
|
|
set(CMARK_TESTS OFF CACHE BOOL "Build cmark tests and enable testing")
|
|
add_subdirectory(cmark)
|
|
endif()
|
|
|
|
# JSON
|
|
add_subdirectory(json11)
|
|
|
|
# libarchive
|
|
set(HAVE_WCSCPY 1)
|
|
set(HAVE_WCSLEN 1)
|
|
|
|
set(ENABLE_WERROR OFF CACHE BOOL "Treat warnings as errors - default is ON for Debug, OFF otherwise.")
|
|
set(ENABLE_TEST OFF CACHE BOOL "Enable unit and regression tests")
|
|
set(ENABLE_COVERAGE OFF CACHE BOOL "Enable code coverage (GCC only, automatically sets ENABLE_TEST to ON)")
|
|
set(ENABLE_LZ4 OFF CACHE BOOL "Enable the use of the system LZ4 library if found")
|
|
set(ENABLE_LZO OFF CACHE BOOL "Enable the use of the system LZO library if found")
|
|
set(ENABLE_LZMA OFF CACHE BOOL "Enable the use of the system LZMA library if found")
|
|
set(ENABLE_ZSTD OFF CACHE BOOL "Enable the use of the system zstd library if found")
|
|
set(ENABLE_CNG OFF CACHE BOOL "Enable the use of CNG(Crypto Next Generation)")
|
|
set(ENABLE_BZip2 OFF CACHE BOOL "Enable the use of the system BZip2 library if found")
|
|
set(ENABLE_EXPAT OFF CACHE BOOL "Enable the use of the system EXPAT library if found")
|
|
set(ENABLE_LIBXML2 OFF CACHE BOOL "Enable the use of the system libxml2 library if found")
|
|
set(ENABLE_CAT OFF CACHE BOOL "Enable cat building")
|
|
set(ENABLE_TAR OFF CACHE BOOL "Enable tar building")
|
|
set(ENABLE_CPIO OFF CACHE BOOL "Enable cpio building")
|
|
set(ENABLE_LIBB2 OFF CACHE BOOL "Enable the use of the system LIBB2 library if found")
|
|
add_subdirectory(libarchive)
|
|
target_include_directories(archive_static INTERFACE
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/libarchive/libarchive>)
|
|
|
|
# benchmark
|
|
if(ENABLE_BENCHMARKS)
|
|
set(BENCHMARK_ENABLE_TESTING OFF CACHE BOOL "Enable testing of the benchmark library.")
|
|
add_subdirectory(benchmark)
|
|
endif()
|
|
|
|
# tinyexpr
|
|
add_library(tinyexpr tinyexpr/tinyexpr.c)
|
|
target_include_directories(tinyexpr PUBLIC tinyexpr)
|
|
|
|
# cityhash
|
|
add_subdirectory(cityhash)
|
|
|
|
# lua
|
|
if(ENABLE_SCRIPTING)
|
|
add_library(lua
|
|
lua/lapi.c
|
|
lua/lcode.c
|
|
lua/lctype.c
|
|
lua/ldebug.c
|
|
lua/ldo.c
|
|
lua/ldump.c
|
|
lua/lfunc.c
|
|
lua/lgc.c
|
|
lua/llex.c
|
|
lua/lmem.c
|
|
lua/lobject.c
|
|
lua/lopcodes.c
|
|
lua/lparser.c
|
|
lua/lstate.c
|
|
lua/lstring.c
|
|
lua/ltable.c
|
|
lua/ltm.c
|
|
lua/lundump.c
|
|
lua/lvm.c
|
|
lua/lzio.c
|
|
lua/ltests.c)
|
|
add_library(lauxlib lua/lauxlib.c)
|
|
add_library(lualib
|
|
lua/lbaselib.c
|
|
lua/lcorolib.c
|
|
lua/ldblib.c
|
|
lua/linit.c
|
|
lua/liolib.c
|
|
lua/lmathlib.c
|
|
lua/loadlib.c
|
|
lua/loslib.c
|
|
lua/lstrlib.c
|
|
lua/ltablib.c
|
|
lua/lutf8lib.c)
|
|
|
|
if(WIN32)
|
|
# LUA_USE_WINDOWS is defined in luaconf.h when we compile with _WIN32
|
|
#target_compile_definitions(lua PUBLIC LUA_USE_WINDOWS=1)
|
|
elseif(APPLE)
|
|
target_compile_definitions(lua PUBLIC LUA_USE_MACOSX=1)
|
|
elseif(UNIX)
|
|
target_compile_definitions(lua PUBLIC LUA_USE_LINUX=1)
|
|
endif()
|
|
|
|
# Compile Lua as C++ to control errors with exceptions and have
|
|
# stack unwinding (i.e. calling destructors correctly).
|
|
if(MSVC)
|
|
target_compile_options(lua PRIVATE -TP)
|
|
target_compile_options(lualib PRIVATE -TP)
|
|
target_compile_options(lauxlib PRIVATE -TP)
|
|
else()
|
|
target_compile_options(lua PRIVATE -xc++)
|
|
target_compile_options(lualib PRIVATE -xc++)
|
|
target_compile_options(lauxlib PRIVATE -xc++)
|
|
endif()
|
|
|
|
target_compile_definitions(lua PUBLIC LUA_FLOORN2I=F2Ifloor)
|
|
target_compile_definitions(lualib PRIVATE HAVE_SYSTEM)
|
|
target_include_directories(lua PUBLIC lua)
|
|
target_include_directories(lauxlib PUBLIC lua)
|
|
target_include_directories(lualib PUBLIC lua)
|
|
target_link_libraries(lauxlib lua)
|
|
target_link_libraries(lualib lua)
|
|
|
|
# ixwebsocket
|
|
if(ENABLE_WEBSOCKET)
|
|
set(IXWEBSOCKET_INSTALL OFF CACHE BOOL "Install IXWebSocket")
|
|
add_subdirectory(IXWebSocket)
|
|
target_include_directories(ixwebsocket PUBLIC)
|
|
endif()
|
|
|
|
endif()
|
|
|
|
# qoi
|
|
add_library(qoi INTERFACE)
|
|
target_include_directories(qoi INTERFACE qoi)
|