Skip to content

Commit

Permalink
Externals/ed25519: Add CMakeLists.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
spycrab committed Feb 6, 2019
1 parent 80f4181 commit 6a6fc56
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -587,6 +587,11 @@ else()
set(PNG png)
endif()

if (APPLE)
message(STATUS "Using ed25519 from Externals")
add_subdirectory(Externals/ed25519)
endif()

# Using static soundtouch from Externals
# Unable to use system soundtouch library: We require shorts, not floats.
add_subdirectory(Externals/soundtouch)
Expand Down
13 changes: 13 additions & 0 deletions Externals/ed25519/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
project(ed25519 C)

add_library(ed25519
add_scalar.c
ge.c
keypair.c
seed.c
sign.c
fe.c
key_exchange.c
sc.c
sha512.c
verify.c)

0 comments on commit 6a6fc56

Please sign in to comment.