How use secp256k1 without libsecp256k1.dll #1591
-
I try to use static library but always use shared one. I tried to defind macro (#define SECP256K1_STATIC) in main file of my project but it didn't affect. I use cmake on windows. |
Beta Was this translation helpful? Give feedback.
Answered by
real-or-random
Aug 17, 2024
Replies: 1 comment 2 replies
-
This sounds right. Do you do this before including Do you actually build a static library? (Pass What compiler are you using? |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
MiZentUi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This sounds right. Do you do this before including
secp256k1.h
?Do you actually build a static library? (Pass
-DBUILD_SHARED_LIBS=OFF
to cmake when building libsecp256k1?)What compiler are you using?