mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-26 18:21:44 +00:00
b5f63d428c
Using built-in function and modules for checking.
12 lines
204 B
CMake
12 lines
204 B
CMake
# cmake support for modp_b64 by David Capello
|
|
|
|
include(TestBigEndian)
|
|
|
|
test_big_endian(WORDS_BIGENDIAN)
|
|
|
|
if(WORDS_BIGENDIAN)
|
|
add_definitions(-DWORDS_BIGENDIAN)
|
|
endif()
|
|
|
|
add_library(modp_b64 modp_b64.c)
|