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