Skip to content

Commit

Permalink
re name sha3 to keccak
Browse files Browse the repository at this point in the history
  • Loading branch information
moribellamy committed Nov 17, 2023
1 parent 60618e7 commit 4f6006d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,14 @@ add_subdirectory(vendor/secp256k1)
# Argparse and Keccak
# -------------------
add_library(argparse STATIC vendor/argparse/argparse.c)
add_library(sha3 STATIC vendor/SHA3IUF/sha3.c)
add_library(keccak STATIC vendor/SHA3IUF/sha3.c)

# ---------------
# Mousewallet Lib
# ---------------
add_library(lib STATIC src/lib.c src/lib.h)
add_dependencies(lib pcg)
target_link_libraries(lib sha3 secp256k1 pcg_interface)
target_link_libraries(lib keccak secp256k1 pcg_interface)

# ---------------
# Mousewallet CLI
Expand Down

0 comments on commit 4f6006d

Please sign in to comment.