Skip to content

Commit 7bff9dc

Browse files
Update secp256k1 to 0.3.2 (#4653)
Copy the new code to `src/secp256k1` without changes: `src/secp256k1` is identical to bitcoin-core/secp256k1@acf5c55 (v0.3.2). We could consider changing to a Git submodule, though that would require changes to the build instructions because we are not using submodules anywhere else.
1 parent e86181c commit 7bff9dc

File tree

160 files changed

+56215
-8345
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

160 files changed

+56215
-8345
lines changed

CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,9 @@ find_package(OpenSSL 1.1.1 REQUIRED)
7171
set_target_properties(OpenSSL::SSL PROPERTIES
7272
INTERFACE_COMPILE_DEFINITIONS OPENSSL_NO_SSL2
7373
)
74+
set(SECP256K1_INSTALL TRUE)
7475
add_subdirectory(src/secp256k1)
76+
add_library(secp256k1::secp256k1 ALIAS secp256k1)
7577
add_subdirectory(src/ed25519-donna)
7678
find_package(lz4 REQUIRED)
7779
# Target names with :: are not allowed in a generator expression.

0 commit comments

Comments
 (0)