mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-20 04:18:26 +01:00
Add a CMake option for WEBP_SWAP_16BIT_CSP.
Change-Id: I79ed6cbce9563bf7ca97fc2e10ec3e75b6b8ab5b
This commit is contained in:
parent
d2223d8d6c
commit
7b54e26bac
@ -7,6 +7,7 @@ option(WEBP_BUILD_CWEBP "Build the cwebp command line tool." OFF)
|
|||||||
option(WEBP_BUILD_DWEBP "Build the dwebp command line tool." OFF)
|
option(WEBP_BUILD_DWEBP "Build the dwebp command line tool." OFF)
|
||||||
option(WEBP_EXPERIMENTAL_FEATURES "Build with experimental features." OFF)
|
option(WEBP_EXPERIMENTAL_FEATURES "Build with experimental features." OFF)
|
||||||
option(WEBP_FORCE_ALIGNED "Force aligned memory operations." OFF)
|
option(WEBP_FORCE_ALIGNED "Force aligned memory operations." OFF)
|
||||||
|
option(WEBP_ENABLE_SWAP_16BIT_CSP "Enable byte swap for 16 bit colorspaces." OFF)
|
||||||
|
|
||||||
set(WEBP_DEP_LIBRARIES)
|
set(WEBP_DEP_LIBRARIES)
|
||||||
set(WEBP_DEP_INCLUDE_DIRS)
|
set(WEBP_DEP_INCLUDE_DIRS)
|
||||||
@ -19,6 +20,12 @@ endif()
|
|||||||
|
|
||||||
include(cmake/config.h.cmake)
|
include(cmake/config.h.cmake)
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# Options.
|
||||||
|
if(WEBP_ENABLE_SWAP_16BIT_CSP)
|
||||||
|
add_definitions(-DWEBP_SWAP_16BIT_CSP)
|
||||||
|
endif()
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# Android only.
|
# Android only.
|
||||||
if(ANDROID)
|
if(ANDROID)
|
||||||
|
Loading…
Reference in New Issue
Block a user