mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-01 20:04:09 +03:00
14 lines
308 B
Plaintext
14 lines
308 B
Plaintext
# Keccak-tiny Library
|
|
# Options:
|
|
# * KECCAK_UNROLLED - Enable unrolled implementation (but disable main one).
|
|
|
|
HEADERS += \
|
|
$$PWD/keccak-tiny.h \
|
|
$$PWD/define-macros.h
|
|
|
|
contains(DEFINES, KECCAK_UNROLLED) {
|
|
SOURCES += $$PWD/keccak-tiny-unrolled.c
|
|
} else {
|
|
SOURCES += $$PWD/keccak-tiny.c
|
|
}
|