1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-18 05:28:40 +00:00

Updated cmake configuration for ed25519

This commit is contained in:
Jochen Hoenicke 2016-04-25 16:32:38 +02:00
parent cd24b2771c
commit 269b779ead
2 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,7 @@
cmake_minimum_required(VERSION 2.6)
set(SOURCES aescrypt.c aeskey.c aes_modes.c aestab.c base58.c bignum.c bip32.c bip39.c ecdsa.c hmac.c nist256p1.c pbkdf2.c rand.c ripemd160.c secp256k1.c sha2.c)
set(SOURCES aescrypt.c aeskey.c aes_modes.c aestab.c base58.c bignum.c bip32.c bip39.c ecdsa.c hmac.c nist256p1.c pbkdf2.c rand.c ripemd160.c secp256k1.c sha2.c ed25519-donna/ed25519.c)
include_directories(ed25519-donna)
# disable sequence point warnings where they are expected
set_source_files_properties(aeskey.c PROPERTIES

View File

@ -37,9 +37,9 @@ SRCS = bignum.c ecdsa.c curves.c secp256k1.c nist256p1.c rand.c hmac.c bip32.c
SRCS += ripemd160.c
SRCS += sha2.c
SRCS += aescrypt.c aeskey.c aestab.c aes_modes.c
SRCS += ed25519-donna/ed25519.c
OBJS = $(SRCS:.c=.o)
OBJS += ed25519-donna/ed25519.o
TESTLIBS = -lcheck -lrt -lpthread -lm
TESTSSLLIBS = -lcrypto