Consolidate external libraries

This commit is contained in:
Pretty Printer
2024-03-21 21:29:31 -05:00
committed by John Freeman
parent dd312c3cc5
commit e2384885f5
184 changed files with 13 additions and 40 deletions

19
external/secp256k1/CMakePresets.json vendored Normal file
View File

@@ -0,0 +1,19 @@
{
"cmakeMinimumRequired": {"major": 3, "minor": 21, "patch": 0},
"version": 3,
"configurePresets": [
{
"name": "dev-mode",
"displayName": "Development mode (intended only for developers of the library)",
"cacheVariables": {
"SECP256K1_EXPERIMENTAL": "ON",
"SECP256K1_ENABLE_MODULE_RECOVERY": "ON",
"SECP256K1_BUILD_EXAMPLES": "ON"
},
"warnings": {
"dev": true,
"uninitialized": true
}
}
]
}