2015-12-21 13:44:02 -03:00
|
|
|
# cmake support for modp_b64 by David Capello
|
|
|
|
|
2016-04-18 22:55:43 +05:00
|
|
|
include(TestBigEndian)
|
|
|
|
|
|
|
|
test_big_endian(WORDS_BIGENDIAN)
|
2015-12-21 13:44:02 -03:00
|
|
|
|
|
|
|
if(WORDS_BIGENDIAN)
|
|
|
|
add_definitions(-DWORDS_BIGENDIAN)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_library(modp_b64 modp_b64.c)
|