mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-12 16:14:10 +00:00
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)
|